about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-03-31 10:15:33 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-03-31 15:49:11 -0700
commit095f1fbde661c4de6dc96fd2e9753b084b66f34a (patch)
treea6df6ac4cbcb8296c8c8d9e455d5957f52c6444a /src/libstd
parentf6bd6b4f3dca5cf5b24c8ed89c7b65b4a89104ce (diff)
parenta78d3832ed955697a2f69da2ba22cee7f32047cc (diff)
downloadrust-095f1fbde661c4de6dc96fd2e9753b084b66f34a.tar.gz
rust-095f1fbde661c4de6dc96fd2e9753b084b66f34a.zip
rollup merge of #23882: wettowelreactor/patch-2
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