Review changes

This commit is contained in:
Nick Cameron 2016-10-07 08:18:17 +13:00
parent 14c62f91b7
commit 79b5177378

View File

@ -256,7 +256,7 @@ macro_rules! debug_assert_ne {
/// with converting downstream errors.
///
/// Prefer using `?` syntax to `try!`. `?` is built in to the language and is
/// more succinct than `try!`, it is the standard method for error propogation.
/// more succinct than `try!`. It is the standard method for error propagation.
///
/// `try!` matches the given `Result`. In case of the `Ok` variant, the
/// expression has the value of the wrapped value.