Remove unnecessary trailing space in style guide.

I agree to license my contributions to each file under the
same terms given at the top of each file I changed.
This commit is contained in:
Corey Farwell 2016-02-27 18:40:08 -05:00 committed by Brian Smith
parent 2547f87d84
commit e3760735a8

View File

@ -56,7 +56,7 @@ will not let callers silently ignore the return value of functions that return
*ring* functions generally do not report error codes for a variety of reasons; *ring* functions generally do not report error codes for a variety of reasons;
when they fail, they only report that they fail. If a function only needs to when they fail, they only report that they fail. If a function only needs to
return a boolean indicator that it succeeded or failed, use `Result<(), ()>` as return a boolean indicator that it succeeded or failed, use `Result<(), ()>` as
the return type. the return type.
If an external function (e.g. part of the Rust standard library) returns If an external function (e.g. part of the Rust standard library) returns
`Option<T>` to indicate failure, use `ok_or(())` to map it to `Result<T, ()>`. `Option<T>` to indicate failure, use `ok_or(())` to map it to `Result<T, ()>`.