diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2019-03-08 09:41:49 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-08 09:41:49 +0100 |
| commit | 9c995110c4ecaedd9528f6a2fa872024c6d0701d (patch) | |
| tree | 14f5354b9d5ef0d6df882ededaf65cd38252d22c | |
| parent | 3005b4d9181793f59b0e9ca113bb3951e0dfa33f (diff) | |
| parent | 020539e230ade3860cf413f4501b83d34bfa35ce (diff) | |
| download | rust-9c995110c4ecaedd9528f6a2fa872024c6d0701d.tar.gz rust-9c995110c4ecaedd9528f6a2fa872024c6d0701d.zip | |
Rollup merge of #58891 - Delta-Psi:doc-fixes, r=Centril
Remove stray ` in the docs for the FromIterator implementation for Option
| -rw-r--r-- | src/libcore/option.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/option.rs b/src/libcore/option.rs index 60aed7ce09d..46dfe28da62 100644 --- a/src/libcore/option.rs +++ b/src/libcore/option.rs @@ -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. /// /// ``` |
