From a78d3832ed955697a2f69da2ba22cee7f32047cc Mon Sep 17 00:00:00 2001 From: Camille Roussel Date: Mon, 30 Mar 2015 18:52:08 -0700 Subject: [PATCH] Update lib.rs Removed duplicate words --- src/libstd/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index b7cb8f9ed50..a17be591811 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -44,7 +44,7 @@ //! lives in the [`vec`](vec/index.html) module. Contiguous, unsized regions //! of memory, `[T]`, commonly called "slices", and their borrowed versions, //! `&[T]`, commonly called "borrowed slices", are built-in types for which the -//! for which the [`slice`](slice/index.html) module defines many methods. +//! [`slice`](slice/index.html) module defines many methods. //! //! `&str`, a UTF-8 string, is a built-in type, and the standard library //! defines methods for it on a variety of traits in the