about summary refs log tree commit diff
path: root/src/liballoc/lib.rs
diff options
context:
space:
mode:
authorPietro Albini <pietro@pietroalbini.org>2018-09-25 22:34:47 +0200
committerGitHub <noreply@github.com>2018-09-25 22:34:47 +0200
commit6a0f45b3f485279a04884e11fe2a37a205bdcea3 (patch)
tree5771883f78bff905ce66890280786fc34585d640 /src/liballoc/lib.rs
parent49e0049e9f2395983ca3cbc82c9665a750931de6 (diff)
parent068c92b2cc0620d18eee1066cd3460f37c9ed9f3 (diff)
downloadrust-6a0f45b3f485279a04884e11fe2a37a205bdcea3.tar.gz
rust-6a0f45b3f485279a04884e11fe2a37a205bdcea3.zip
Rollup merge of #54537 - sdroege:chunks-exact, r=alexcrichton
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 6ce24b65990..7960936dad6 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(slice_partition_dedup)]