File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ Suppose we wanted to write a procedure that computed the distance between any
5050two points, no matter where they were stored. For example, we might like to
5151compute the distance between ` on_the_stack ` and ` shared_box ` , or between
5252` 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
53+ two arguments of type ` Point ` —that is, it takes the points by value. But if we
5454define it this way, calling the function will cause the points to be
5555copied. For points, this is probably not so bad, but often copies are
5656expensive. Worse, if the data type contains mutable fields, copying can change
You can’t perform that action at this time.
0 commit comments