Update lib.rs

Removed duplicate words
This commit is contained in:
Camille Roussel 2015-03-30 18:52:08 -07:00
parent 6cf3b0b74a
commit a78d3832ed
1 changed files with 1 additions and 1 deletions

View File

@ -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