Skip to content

Commit ec66b5a

Browse files
authoredJun 28, 2016
used curly instead of straight quotes
1 parent 763cec2 commit ec66b5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/doc/book/ownership.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ But, unlike a move, we can still use `v` afterward. This is because an `i32`
212212
has no pointers to data somewhere else, copying it is a full copy.
213213

214214
All primitive types implement the `Copy` trait and their ownership is
215-
therefore not moved like one would assume, following the 'ownership rules'.
215+
therefore not moved like one would assume, following the ownership rules.
216216
To give an example, the two following snippets of code only compile because the
217217
`i32` and `bool` types implement the `Copy` trait.
218218

0 commit comments

Comments
 (0)