Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion solutions/ownership/ownership.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ fn main() {
let t = (String::from("hello"), String::from("world"));

// fill the blanks
let (ref s1, ref s2) = t;
let (s1, s2) = t.clone();

println!("{:?}, {:?}, {:?}", s1, s2, t); // -> "hello", "world", ("hello", "world")
}
Expand Down