Remove stray ` in the documentation for the FromIterator implementation for Option

This commit is contained in:
Alexandra V 2019-03-03 13:25:55 +01:00
parent f565cdd614
commit 020539e230

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.
///
/// ```