From b07b83de65518de149c4d3aff6e37a018b7cc626 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Tue, 27 Aug 2019 00:54:11 +0200 Subject: [PATCH] 'or' skipped --- src/doc/rustc-dev-guide/src/borrow_check.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/rustc-dev-guide/src/borrow_check.md b/src/doc/rustc-dev-guide/src/borrow_check.md index b3eeaa38747b..76f182083bbf 100644 --- a/src/doc/rustc-dev-guide/src/borrow_check.md +++ b/src/doc/rustc-dev-guide/src/borrow_check.md @@ -8,7 +8,7 @@ enforcing a number of properties: - That you can't move a value while it is borrowed. - That you can't access a place while it is mutably borrowed (except through the reference). -- That you can't mutate a place while it is shared borrowed. +- That you can't mutate a place while it is shared or borrowed. - etc At the time of this writing, the code is in a state of transition. The