about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/libcollections/str.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libcollections/str.rs b/src/libcollections/str.rs
index 5e8a9bca342..6be46855fe6 100644
--- a/src/libcollections/str.rs
+++ b/src/libcollections/str.rs
@@ -1859,8 +1859,6 @@ impl str {
     /// # Examples
     ///
     /// ```
-    /// #![feature(str_casing)]
-    ///
     /// let s = "HELLO";
     /// assert_eq!(s.to_lowercase(), "hello");
     /// ```
@@ -1905,8 +1903,6 @@ impl str {
     /// # Examples
     ///
     /// ```
-    /// #![feature(str_casing)]
-    ///
     /// let s = "hello";
     /// assert_eq!(s.to_uppercase(), "HELLO");
     /// ```