From 8de68437b0d2decbea778ab4e20bcf55540dd4a2 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Tue, 27 Aug 2019 07:23:10 +0200 Subject: [PATCH] immutable was meant here --- src/borrow_check.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borrow_check.md b/src/borrow_check.md index 76f182083..b3864aac4 100644 --- a/src/borrow_check.md +++ b/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 or borrowed. +- That you can't mutate a place while it is immutably borrowed. - etc At the time of this writing, the code is in a state of transition. The