From 667d1c67e28fbeb6bd208161d84f81df69119989 Mon Sep 17 00:00:00 2001 From: Todd Lucas Date: Thu, 17 Mar 2016 20:14:05 -0700 Subject: [PATCH] Minor phrasing adjustment --- src/doc/book/references-and-borrowing.md | 4 ++-- 1 file 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