about summary refs log tree commit diff
path: root/compiler/rustc_error_codes/src
diff options
context:
space:
mode:
authorgimbles <93856041+gimbles@users.noreply.github.com>2023-03-15 23:55:48 +0530
committergimbles <93856041+gimbles@users.noreply.github.com>2023-03-15 23:55:48 +0530
commite5a5b90afc527dfb87f6034b52b7adca063ca078 (patch)
tree09310f0004bea5e3e0685199a49162acf091d28e /compiler/rustc_error_codes/src
parente4b9f86054c581d931f8bad0c87523c53e1e8e3f (diff)
downloadrust-e5a5b90afc527dfb87f6034b52b7adca063ca078.tar.gz
rust-e5a5b90afc527dfb87f6034b52b7adca063ca078.zip
unequal → not equal
Diffstat (limited to 'compiler/rustc_error_codes/src')
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0416.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0416.md b/compiler/rustc_error_codes/src/error_codes/E0416.md
index 7bc316dafc5..8c0edcee521 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0416.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0416.md
@@ -23,6 +23,6 @@ Or maybe did you mean to unify? Consider using a guard:
 # let (A, B, C) = (1, 2, 3);
 match (A, B, C) {
     (x, x2, see) if x == x2 => { /* A and B are equal, do one thing */ }
-    (y, z, see) => { /* A and B unequal; do another thing */ }
+    (y, z, see) => { /* A and B not equal; do another thing */ }
 }
 ```