Update String.md

borrow_string() takes in &str so the value won't be moved into it. hence updated the message inside println!()
This commit is contained in:
Skandesh
2022-07-22 17:18:57 +05:30
committed by GitHub
parent d91ca79253
commit 995415d6fb

View File

@ -32,7 +32,7 @@ fn main() {
}
fn borrow_string(s: &str) {
println!("ownership of \"{}\" is moved here!", s)
println!("ownership of \"{}\" is still with the variable 's', only the reference is passed", s)
}
```