about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Price <jonmarkprice@users.noreply.github.com>2016-06-28 14:09:32 -0500
committerGitHub <noreply@github.com>2016-06-28 14:09:32 -0500
commitec66b5addc8c2e46acb12114ead41324adaaac54 (patch)
tree92b68e3fadc5ba6338c2cad32d5e32c1eab98203
parent763cec21f0b030c0d811bea3263b46361e99a14f (diff)
downloadrust-ec66b5addc8c2e46acb12114ead41324adaaac54.tar.gz
rust-ec66b5addc8c2e46acb12114ead41324adaaac54.zip
used curly instead of straight quotes
-rw-r--r--src/doc/book/ownership.md2
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.