diff options
| author | Jonathan Price <jonmarkprice@users.noreply.github.com> | 2016-06-28 14:09:32 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-28 14:09:32 -0500 |
| commit | ec66b5addc8c2e46acb12114ead41324adaaac54 (patch) | |
| tree | 92b68e3fadc5ba6338c2cad32d5e32c1eab98203 | |
| parent | 763cec21f0b030c0d811bea3263b46361e99a14f (diff) | |
| download | rust-ec66b5addc8c2e46acb12114ead41324adaaac54.tar.gz rust-ec66b5addc8c2e46acb12114ead41324adaaac54.zip | |
used curly instead of straight quotes
| -rw-r--r-- | src/doc/book/ownership.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/ownership.md b/src/doc/book/ownership.md index 73775956b6c..a630b5d04df 100644 --- a/src/doc/book/ownership.md +++ b/src/doc/book/ownership.md @@ -212,7 +212,7 @@ But, unlike a move, we can still use `v` afterward. This is because an `i32` has no pointers to data somewhere else, copying it is a full copy. All primitive types implement the `Copy` trait and their ownership is -therefore not moved like one would assume, following the 'ownership rules'. +therefore not moved like one would assume, following the ‘ownership rules’. To give an example, the two following snippets of code only compile because the `i32` and `bool` types implement the `Copy` trait. |
