From 020ec0a03967f16ca5a4ba2a33472a8da912986d Mon Sep 17 00:00:00 2001 From: Tim McNamara Date: Sat, 9 Oct 2021 21:44:07 +1300 Subject: [PATCH] Remove unnecessary hyphen MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Laurențiu Nicola --- library/alloc/src/boxed.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/alloc/src/boxed.rs b/library/alloc/src/boxed.rs index f47be508983..85f908a7f5c 100644 --- a/library/alloc/src/boxed.rs +++ b/library/alloc/src/boxed.rs @@ -1373,7 +1373,7 @@ impl From> for Box { /// /// When `cow` is the `Cow::Borrowed` variant, this /// conversion allocates on the heap and copies the - /// underlying `str`. Otherwise, it will try to re-use the owned + /// underlying `str`. Otherwise, it will try to reuse the owned /// `String`'s allocation. /// /// # Examples