diff --git a/solutions/ownership/borrowing.md b/solutions/ownership/borrowing.md index 320e78a7..6cc5cdc2 100644 --- a/solutions/ownership/borrowing.md +++ b/solutions/ownership/borrowing.md @@ -147,8 +147,8 @@ fn main() { let r1 = &mut s; let r2 = &mut s; - // add one line below to make a compiler error: cannot borrow `s` as mutable more than once at a time + // Add one line below to make a compiler error: cannot borrow `s` as mutable more than once at a time // you can't use r1 and r2 at the same time - println!("{}, {}", r1, r2); + println!("{}", r1); } ```