Merge pull request #278 from Skandesh/patch-2

Update String.md
This commit is contained in:
Sunface
2022-07-28 09:10:21 +08:00
committed by GitHub

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)
}
```