about summary refs log tree commit diff
path: root/compiler
diff options
context:
space:
mode:
authorWaffle Maybe <waffle.lapkin@gmail.com>2024-04-05 21:32:32 +0200
committerGitHub <noreply@github.com>2024-04-05 21:32:32 +0200
commit8b9b024d25acc7c278cfa080c84fa1769ffe3c1d (patch)
tree41201232094626b222325edeae1d32bc869345b4 /compiler
parent1921968cc5403892739b43bdefe793a130badd15 (diff)
downloadrust-8b9b024d25acc7c278cfa080c84fa1769ffe3c1d.tar.gz
rust-8b9b024d25acc7c278cfa080c84fa1769ffe3c1d.zip
Fix typo
Diffstat (limited to 'compiler')
-rw-r--r--compiler/rustc_middle/src/traits/solve/inspect.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/traits/solve/inspect.rs b/compiler/rustc_middle/src/traits/solve/inspect.rs
index 054772daab8..52cdbae1e56 100644
--- a/compiler/rustc_middle/src/traits/solve/inspect.rs
+++ b/compiler/rustc_middle/src/traits/solve/inspect.rs
@@ -130,7 +130,7 @@ pub enum ProbeStep<'tcx> {
 pub enum ProbeKind<'tcx> {
     /// The root inference context while proving a goal.
     Root { result: QueryResult<'tcx> },
-    /// Trying to normalize an alias by at least one stpe in `NormalizesTo`.
+    /// Trying to normalize an alias by at least one step in `NormalizesTo`.
     TryNormalizeNonRigid { result: QueryResult<'tcx> },
     /// Probe entered when normalizing the self ty during candidate assembly
     NormalizedSelfTyAssembly,