about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorCamille Roussel <camille@rousselfamily.com>2015-03-30 18:52:08 -0700
committerCamille Roussel <camille@rousselfamily.com>2015-03-30 18:52:08 -0700
commita78d3832ed955697a2f69da2ba22cee7f32047cc (patch)
tree8bbf2d2ed6a7db3cb0274c4963056834f67a3af7 /src/libstd
parent6cf3b0b74aadcc1fe87adbd2c74876a1f6c920b3 (diff)
downloadrust-a78d3832ed955697a2f69da2ba22cee7f32047cc.tar.gz
rust-a78d3832ed955697a2f69da2ba22cee7f32047cc.zip
Update lib.rs
Removed duplicate words
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/lib.rs2
1 files changed, 1 insertions, 1 deletions
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