From 020539e230ade3860cf413f4501b83d34bfa35ce Mon Sep 17 00:00:00 2001 From: Alexandra V Date: Sun, 3 Mar 2019 13:25:55 +0100 Subject: [PATCH] Remove stray ` in the documentation for the FromIterator implementation for Option --- src/libcore/option.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/option.rs b/src/libcore/option.rs index 60aed7ce09d7f..46dfe28da622c 100644 --- a/src/libcore/option.rs +++ b/src/libcore/option.rs @@ -1286,7 +1286,7 @@ impl> FromIterator> for Option { /// # 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. /// /// ```