diff options
| author | Sebastian Dröge <sebastian@centricular.com> | 2018-09-25 08:56:48 +0300 |
|---|---|---|
| committer | Sebastian Dröge <sebastian@centricular.com> | 2018-09-25 08:56:48 +0300 |
| commit | 068c92b2cc0620d18eee1066cd3460f37c9ed9f3 (patch) | |
| tree | cb2d15f34a7ed059a74f171f2219b560939a6334 /src/liballoc | |
| parent | e09e45041b5cab9d849b554824c6683de6372e41 (diff) | |
| download | rust-068c92b2cc0620d18eee1066cd3460f37c9ed9f3.tar.gz rust-068c92b2cc0620d18eee1066cd3460f37c9ed9f3.zip | |
Also rename ExactChunks iterator name to ChunksExact
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/slice.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/slice.rs b/src/liballoc/slice.rs index 22c15fd8a51..33d28bef2d7 100644 --- a/src/liballoc/slice.rs +++ b/src/liballoc/slice.rs @@ -124,7 +124,7 @@ pub use core::slice::{from_ref, from_mut}; #[stable(feature = "slice_get_slice", since = "1.28.0")] pub use core::slice::SliceIndex; #[unstable(feature = "chunks_exact", issue = "47115")] -pub use core::slice::{ExactChunks, ExactChunksMut}; +pub use core::slice::{ChunksExact, ChunksExactMut}; //////////////////////////////////////////////////////////////////////////////// // Basic slice extension methods |
