servo: to_string() -> into_string()

This commit is contained in:
Manish Goregaokar 2014-12-14 04:20:51 +05:30 committed by Ms2ger
parent c7dfb1d24b
commit e0b88a9ca2

View file

@ -58,8 +58,8 @@ android_start!(main)
#[cfg(target_os="android")]
fn get_args() -> Vec<String> {
vec![
"servo".to_string(),
"http://en.wikipedia.org/wiki/Rust".to_string()
"servo".into_string(),
"http://en.wikipedia.org/wiki/Rust".into_string()
]
}