From ec66b5addc8c2e46acb12114ead41324adaaac54 Mon Sep 17 00:00:00 2001 From: Jonathan Price Date: Tue, 28 Jun 2016 14:09:32 -0500 Subject: [PATCH] used curly instead of straight quotes --- src/doc/book/ownership.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/book/ownership.md b/src/doc/book/ownership.md index 73775956b6cc..a630b5d04df1 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.