about summary refs log tree commit diff
path: root/compiler/rustc_middle/src/query
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_middle/src/query
parente4b9f86054c581d931f8bad0c87523c53e1e8e3f (diff)
downloadrust-e5a5b90afc527dfb87f6034b52b7adca063ca078.tar.gz
rust-e5a5b90afc527dfb87f6034b52b7adca063ca078.zip
unequal → not equal
Diffstat (limited to 'compiler/rustc_middle/src/query')
-rw-r--r--compiler/rustc_middle/src/query/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/query/mod.rs b/compiler/rustc_middle/src/query/mod.rs
index 75f05c4af23..2cd79157441 100644
--- a/compiler/rustc_middle/src/query/mod.rs
+++ b/compiler/rustc_middle/src/query/mod.rs
@@ -2215,7 +2215,7 @@ rustc_queries! {
     }
 
     /// Used in `super_combine_consts` to ICE if the type of the two consts are definitely not going to end up being
-    /// equal to eachother. This might return `Ok` even if the types are unequal, but will never return `Err` if
+    /// equal to eachother. This might return `Ok` even if the types are not equal, but will never return `Err` if
     /// the types might be equal.
     query check_tys_might_be_eq(arg: Canonical<'tcx, (ty::ParamEnv<'tcx>, Ty<'tcx>, Ty<'tcx>)>) -> Result<(), NoSolution> {
         desc { "check whether two const param are definitely not equal to eachother"}