about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEduard-Mihai Burtescu <edy.burt@gmail.com>2016-03-19 12:30:01 +0200
committerEduard-Mihai Burtescu <edy.burt@gmail.com>2016-03-19 12:30:01 +0200
commitd5dceba8fae2a77ae652d348a4d757a6a52fe16c (patch)
tree59996db8a67a4663e9cfe74d6b6a1123968f3ca9
parent9413d904ff19eb21806fc28877f22b89a9445527 (diff)
parent667d1c67e28fbeb6bd208161d84f81df69119989 (diff)
downloadrust-d5dceba8fae2a77ae652d348a4d757a6a52fe16c.tar.gz
rust-d5dceba8fae2a77ae652d348a4d757a6a52fe16c.zip
Rollup merge of #32327 - toddlucas:master, r=apasel422
Minor phrasing adjustment to book references-and-borrowing
-rw-r--r--src/doc/book/references-and-borrowing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/book/references-and-borrowing.md b/src/doc/book/references-and-borrowing.md
index 7be5cc442dd..74983c12553 100644
--- a/src/doc/book/references-and-borrowing.md
+++ b/src/doc/book/references-and-borrowing.md
@@ -163,8 +163,8 @@ both at the same time:
 * exactly one mutable reference (`&mut T`).
 
 
-You may notice that this is very similar, though not exactly the same as,
-to the definition of a data race:
+You may notice that this is very similar to, though not exactly the same as,
+the definition of a data race:
 
 > There is a ‘data race’ when two or more pointers access the same memory
 > location at the same time, where at least one of them is writing, and the