1
Fork 0

Rename to_str to to_string

Closes #15796.

[breaking-change]
This commit is contained in:
Steven Fackler 2014-07-20 17:12:40 -07:00 committed by Alex Crichton
parent e3887a7766
commit 2e24ef377e
7 changed files with 6 additions and 6 deletions

View file

@ -20,7 +20,7 @@ use option::{Option, Some, None};
use slice::{ImmutableVector, MutableVector, Vector};
use str::{OwnedStr, Str, StrAllocating, StrSlice};
use string::String;
use to_str::{IntoStr};
use to_string::IntoStr;
use vec::Vec;
/// Datatype to hold one ascii character. It wraps a `u8`, with the highest bit always zero.