We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5aacf79 + 72454f4 commit f0c9927Copy full SHA for f0c9927
doc/tutorial-borrowed-ptr.md
@@ -50,7 +50,7 @@ Suppose we wanted to write a procedure that computed the distance between any
50
two points, no matter where they were stored. For example, we might like to
51
compute the distance between `on_the_stack` and `shared_box`, or between
52
`shared_box` and `unique_box`. One option is to define a function that takes
53
-two arguments of type `Point`—that is, it takes the points by value. But we
+two arguments of type `Point`—that is, it takes the points by value. But if we
54
define it this way, calling the function will cause the points to be
55
copied. For points, this is probably not so bad, but often copies are
56
expensive. Worse, if the data type contains mutable fields, copying can change
0 commit comments