about summary refs log tree commit diff
path: root/compiler/rustc_error_codes/src
diff options
context:
space:
mode:
authortrevyn <230691+trevyn@users.noreply.github.com>2024-07-06 09:13:14 +0300
committerGitHub <noreply@github.com>2024-07-06 09:13:14 +0300
commit09b3fcebf4939d19635b17a04a3d108a29b65149 (patch)
tree3aa4365abe1d118795ef0ea83a44cbb7ce3a376f /compiler/rustc_error_codes/src
parent51917e2e69702e5752bce6a4f3bfd285d0f4ae39 (diff)
downloadrust-09b3fcebf4939d19635b17a04a3d108a29b65149.tar.gz
rust-09b3fcebf4939d19635b17a04a3d108a29b65149.zip
Correct description of E0502
Diffstat (limited to 'compiler/rustc_error_codes/src')
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0502.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0502.md b/compiler/rustc_error_codes/src/error_codes/E0502.md
index dc3ffdfddd9..85f38b9286f 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0502.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0502.md
@@ -1,4 +1,5 @@
-A variable already borrowed as immutable was borrowed as mutable.
+A variable already borrowed with a certain mutability (either mutable or
+immutable) was borrowed again with a different mutability.
 
 Erroneous code example:
 
@@ -13,7 +14,7 @@ fn foo(a: &mut i32) {
 ```
 
 To fix this error, ensure that you don't have any other references to the
-variable before trying to access it mutably:
+variable before trying to access it with a different mutability:
 
 ```
 fn bar(x: &mut i32) {}