From 66f757b26d0dc1a3fe5a95f9554a8927dfb3c44a Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Fri, 3 Jul 2015 15:45:06 -0400 Subject: [PATCH] remove some feature gates from the docs These aren't actually needed --- src/libcollections/str.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/libcollections/str.rs b/src/libcollections/str.rs index 5e8a9bca342b0..6be46855fe605 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"); /// ```