std: Rename strbuf operations to string

[breaking-change]
This commit is contained in:
Richo Healey
2014-05-25 03:17:19 -07:00
parent 4348e23b26
commit 1f1b2e42d7
304 changed files with 2567 additions and 2567 deletions

View File

@@ -202,8 +202,8 @@ mod test {
macro_rules! push {
($level: expr, $name: expr) => {
assert_eq!(builder.push($level,
$name.to_strbuf(),
"".to_strbuf()),
$name.to_string(),
"".to_string()),
$name);
}
}
@@ -242,9 +242,9 @@ mod test {
$(
TocEntry {
level: $level,
name: $name.to_strbuf(),
sec_number: $name.to_strbuf(),
id: "".to_strbuf(),
name: $name.to_string(),
sec_number: $name.to_string(),
id: "".to_string(),
children: toc!($($sub),*)
}
),*