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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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)
}
```
@ -170,4 +170,4 @@ fn main() {
println!("Success!")
}
```
```