about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2018-09-25 08:56:48 +0300
committerSebastian Dröge <sebastian@centricular.com>2018-09-25 08:56:48 +0300
commit068c92b2cc0620d18eee1066cd3460f37c9ed9f3 (patch)
treecb2d15f34a7ed059a74f171f2219b560939a6334 /src/liballoc
parente09e45041b5cab9d849b554824c6683de6372e41 (diff)
downloadrust-068c92b2cc0620d18eee1066cd3460f37c9ed9f3.tar.gz
rust-068c92b2cc0620d18eee1066cd3460f37c9ed9f3.zip
Also rename ExactChunks iterator name to ChunksExact
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/slice.rs2
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