diff options
| author | Jonathan Price <jonmarkprice@users.noreply.github.com> | 2016-06-27 16:49:58 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-27 16:49:58 -0500 |
| commit | 4a327e0e143a75e793033dbab4fb045b3655967e (patch) | |
| tree | 1d429935d66e6831991cfcb2453d86d5a90391e6 /src | |
| parent | cae02fff6a36b19d65c4bb2ff993e373dad16032 (diff) | |
| download | rust-4a327e0e143a75e793033dbab4fb045b3655967e.tar.gz rust-4a327e0e143a75e793033dbab4fb045b3655967e.zip | |
"errors with" is idiomatic in English
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/book/references-and-borrowing.md | 2 |
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 |
