From 1f5f081afcbc989be1ddd9f63aa621fa13bb6f45 Mon Sep 17 00:00:00 2001 From: bitcp <7768468+bitcp@users.noreply.github.com> Date: Mon, 2 Mar 2026 22:24:28 +0800 Subject: [PATCH] Fix mixing up place expr with place expr ctx --- src/expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/expressions.md b/src/expressions.md index 022f69a571..c8249ec96c 100644 --- a/src/expressions.md +++ b/src/expressions.md @@ -223,7 +223,7 @@ r[expr.mut.intro] For a place expression to be [assigned][assign] to, mutably [borrowed][borrow], [implicitly mutably borrowed], or bound to a pattern containing `ref mut`, it must be _mutable_. We call these *mutable place expressions*. In contrast, other place expressions are called *immutable place expressions*. r[expr.mut.valid-places] -The following expressions can be mutable place expression contexts: +The following expressions can be mutable: * Mutable [variables] which are not currently borrowed. * [Mutable `static` items].