about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorJonathan Price <jonmarkprice@users.noreply.github.com>2016-06-27 16:49:58 -0500
committerGitHub <noreply@github.com>2016-06-27 16:49:58 -0500
commit4a327e0e143a75e793033dbab4fb045b3655967e (patch)
tree1d429935d66e6831991cfcb2453d86d5a90391e6 /src/doc
parentcae02fff6a36b19d65c4bb2ff993e373dad16032 (diff)
downloadrust-4a327e0e143a75e793033dbab4fb045b3655967e.tar.gz
rust-4a327e0e143a75e793033dbab4fb045b3655967e.zip
"errors with" is idiomatic in English
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/book/references-and-borrowing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/references-and-borrowing.md b/src/doc/book/references-and-borrowing.md
index ef339a14309..8aa31c3691f 100644
--- a/src/doc/book/references-and-borrowing.md
+++ b/src/doc/book/references-and-borrowing.md
@@ -123,7 +123,7 @@ let v = vec![];
 foo(&v);
 ```
 
-errors with:
+will give us this error:
 
 ```text
 error: cannot borrow immutable borrowed content `*v` as mutable