about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2016-01-14 19:12:29 +0530
committerManish Goregaokar <manishsmail@gmail.com>2016-01-14 19:12:29 +0530
commitf28a43102b078c5dee78ba5cbbcbb0350cd92330 (patch)
tree6bde6f184f814c51e5c8f25d84cfd6a6d0d28175
parent74458cf42aac32b8ba2a2ca98f8f29908e8a34e7 (diff)
parent33b12be8b588214d2d51f12460ea87cbe4efe727 (diff)
downloadrust-f28a43102b078c5dee78ba5cbbcbb0350cd92330.tar.gz
rust-f28a43102b078c5dee78ba5cbbcbb0350cd92330.zip
Rollup merge of #30879 - durka:collections-range-tracking-issue, r=nagisa
see #27711 and #30877

r? @alexcrichton
-rw-r--r--src/libcollections/range.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libcollections/range.rs b/src/libcollections/range.rs
index c70aa67366b..afcd779ddf1 100644
--- a/src/libcollections/range.rs
+++ b/src/libcollections/range.rs
@@ -8,8 +8,9 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![unstable(feature = "collections_range", reason = "was just added",
-            issue = "27711")]
+#![unstable(feature = "collections_range",
+            reason = "waiting for dust to settle on inclusive ranges",
+            issue = "30877")]
 
 //! Range syntax.