diff options
| author | Chris Barrick <cbarrick1@gmail.com> | 2018-12-06 16:53:24 -0500 |
|---|---|---|
| committer | Chris Barrick <cbarrick1@gmail.com> | 2018-12-06 16:53:24 -0500 |
| commit | b6d3668c42e2a333fd897e11772a3b95961550c9 (patch) | |
| tree | 3baca7189d0f1d7130e4d1426b51e49d4fa89f7b | |
| parent | cd48ce1e9a9c0965f01ede2ea1a554eca2c74336 (diff) | |
| download | rust-b6d3668c42e2a333fd897e11772a3b95961550c9.tar.gz rust-b6d3668c42e2a333fd897e11772a3b95961550c9.zip | |
Fix a stutter in the docs for slice::exact_chunks
| -rw-r--r-- | src/libcore/slice/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libcore/slice/mod.rs b/src/libcore/slice/mod.rs index 8c55a16f3c8..5b57dcabb8d 100644 --- a/src/libcore/slice/mod.rs +++ b/src/libcore/slice/mod.rs @@ -702,8 +702,7 @@ impl<T> [T] { /// resulting code better than in the case of [`chunks`]. /// /// See [`chunks`] for a variant of this iterator that also returns the remainder as a smaller - /// chunk, and [`rchunks_exact`] for the same iterator but starting at the end of the slice of - /// the slice. + /// chunk, and [`rchunks_exact`] for the same iterator but starting at the end of the slice. /// /// # Panics /// |
