about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPietro Albini <pietro@pietroalbini.org>2019-03-08 09:41:49 +0100
committerGitHub <noreply@github.com>2019-03-08 09:41:49 +0100
commit9c995110c4ecaedd9528f6a2fa872024c6d0701d (patch)
tree14f5354b9d5ef0d6df882ededaf65cd38252d22c
parent3005b4d9181793f59b0e9ca113bb3951e0dfa33f (diff)
parent020539e230ade3860cf413f4501b83d34bfa35ce (diff)
downloadrust-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.rs2
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.
     ///
     /// ```