Rollup merge of #58891 - Delta-Psi:doc-fixes, r=Centril

Remove stray ` in the docs for the FromIterator implementation for Option
This commit is contained in:
Pietro Albini 2019-03-08 09:41:49 +01:00 committed by GitHub
commit 9c995110c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1286,7 +1286,7 @@ impl<A, V: FromIterator<A>> FromIterator<Option<A>> for Option<V> {
/// # Examples
///
/// Here is an example which increments every integer in a vector.
/// `We use the checked variant of `add` that returns `None` when the
/// We use the checked variant of `add` that returns `None` when the
/// calculation would result in an overflow.
///
/// ```