From dc76247a0a7778a0f38d63bcc3ae5428327bfcf1 Mon Sep 17 00:00:00 2001 From: Michael Howell Date: Wed, 2 Aug 2017 10:58:27 -0700 Subject: [PATCH] Change "Example" to "Examples" in the doc comments --- src/libcore/cell.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcore/cell.rs b/src/libcore/cell.rs index b250bf49e0c..675fcef5e5a 100644 --- a/src/libcore/cell.rs +++ b/src/libcore/cell.rs @@ -549,7 +549,7 @@ impl RefCell { /// /// This function corresponds to [`std::mem::replace`](../mem/fn.replace.html). /// - /// # Example + /// # Examples /// /// ``` /// #![feature(refcell_replace_swap)] @@ -575,7 +575,7 @@ impl RefCell { /// /// This function corresponds to [`std::mem::swap`](../mem/fn.swap.html). /// - /// # Example + /// # Examples /// /// ``` /// #![feature(refcell_replace_swap)]