This commit is contained in:
Steve Klabnik 2015-05-19 21:26:21 -04:00
parent ed3c64451c
commit 55da4c6975

View File

@ -1842,6 +1842,8 @@ impl str {
/// # Examples
///
/// ```
/// #![feature(collections)]
///
/// let s = "HELLO";
/// assert_eq!(s.to_lowercase(), "hello");
/// ```
@ -1857,6 +1859,8 @@ impl str {
/// # Examples
///
/// ```
/// #![feature(collections)]
///
/// let s = "hello";
/// assert_eq!(s.to_uppercase(), "HELLO");
/// ```