about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2024-04-05 22:33:29 +0200
committerGitHub <noreply@github.com>2024-04-05 22:33:29 +0200
commitb3b7f27e612da4ffdf2f33e60a5fe2618dbe925b (patch)
tree5b629b5f66a0583e478cd9c45db48c7f9be03c9a
parent7a38225e20b973f9d393075c742268a1935bbbf5 (diff)
parent8b9b024d25acc7c278cfa080c84fa1769ffe3c1d (diff)
downloadrust-b3b7f27e612da4ffdf2f33e60a5fe2618dbe925b.tar.gz
rust-b3b7f27e612da4ffdf2f33e60a5fe2618dbe925b.zip
Rollup merge of #123514 - WaffleLapkin:stpe, r=compiler-errors
Fix typo in `compiler/rustc_middle/src/traits/solve/inspect.rs`

r? lcnr
(typo from #123363)
`@bors` rollup=always
-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,