diff options
| author | gimbles <93856041+gimbles@users.noreply.github.com> | 2023-03-15 23:55:48 +0530 |
|---|---|---|
| committer | gimbles <93856041+gimbles@users.noreply.github.com> | 2023-03-15 23:55:48 +0530 |
| commit | e5a5b90afc527dfb87f6034b52b7adca063ca078 (patch) | |
| tree | 09310f0004bea5e3e0685199a49162acf091d28e /compiler/rustc_error_codes/src | |
| parent | e4b9f86054c581d931f8bad0c87523c53e1e8e3f (diff) | |
| download | rust-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.md | 2 |
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 */ } } ``` |
