about summary refs log tree commit diff
path: root/src/libcore/str
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-03-07 16:34:35 -0800
committerAlex Crichton <alex@alexcrichton.com>2016-03-11 22:09:58 -0800
commitaed7ddae8ea7f549dc2d493fda49dfa49de429b7 (patch)
tree444bbd633da071ed3d5564de194eda3add6ae074 /src/libcore/str
parenta38bf6e23d13bd479cf89b338f0862395d22fd07 (diff)
downloadrust-aed7ddae8ea7f549dc2d493fda49dfa49de429b7.tar.gz
rust-aed7ddae8ea7f549dc2d493fda49dfa49de429b7.zip
core: Make a new tracking issue for prelude traits
The referenced issues here were both closed, so hook up a new issue which tracks
specifically the prelude traits being unstable.
Diffstat (limited to 'src/libcore/str')
-rw-r--r--src/libcore/str/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/str/mod.rs b/src/libcore/str/mod.rs
index dee13bf3d3d..f9d1902bea7 100644
--- a/src/libcore/str/mod.rs
+++ b/src/libcore/str/mod.rs
@@ -1561,7 +1561,7 @@ mod traits {
 #[doc(hidden)]
 #[unstable(feature = "core_str_ext",
            reason = "stable interface provided by `impl str` in later crates",
-           issue = "27701")]
+           issue = "32110")]
 pub trait StrExt {
     // NB there are no docs here are they're all located on the StrExt trait in
     // libcollections, not here.