summary refs log tree commit diff
path: root/src/liballoc/lib.rs
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2018-09-24 22:43:06 +0300
committerSebastian Dröge <sebastian@centricular.com>2018-09-24 22:43:06 +0300
commite09e45041b5cab9d849b554824c6683de6372e41 (patch)
tree679312b6a8193f610e4d8e84c15c05298353c4f4 /src/liballoc/lib.rs
parenta072d1bca6282d1d2fbec103d12393527eb5a868 (diff)
downloadrust-e09e45041b5cab9d849b554824c6683de6372e41.tar.gz
rust-e09e45041b5cab9d849b554824c6683de6372e41.zip
Rename slice::exact_chunks() to slice::chunks_exact()
See https://github.com/rust-lang/rust/issues/47115#issuecomment-403090815
and https://github.com/rust-lang/rust/issues/47115#issuecomment-424053547
Diffstat (limited to 'src/liballoc/lib.rs')
-rw-r--r--src/liballoc/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs
index 089480c06d2..63ab5043ec5 100644
--- a/src/liballoc/lib.rs
+++ b/src/liballoc/lib.rs
@@ -116,7 +116,7 @@
 #![feature(unsize)]
 #![feature(allocator_internals)]
 #![feature(on_unimplemented)]
-#![feature(exact_chunks)]
+#![feature(chunks_exact)]
 #![feature(rustc_const_unstable)]
 #![feature(const_vec_new)]
 #![feature(maybe_uninit)]