diff --git a/Understanding Ownership/References and Borrowing/Borrowing Values with References/task.md b/Understanding Ownership/References and Borrowing/Borrowing Values with References/task.md index 19a2119d..265fdca1 100644 --- a/Understanding Ownership/References and Borrowing/Borrowing Values with References/task.md +++ b/Understanding Ownership/References and Borrowing/Borrowing Values with References/task.md @@ -22,7 +22,7 @@ First, notice that all the tuple code in the variable declaration and the functi These ampersands are _references_, and they allow you to refer to some value without taking ownership of it. Figure 5 shows a diagram. -&String s pointing at String s1 +&String s pointing at String s1 ##### Figure 5: A diagram of &String s pointing at String s1