about summary refs log tree commit diff
path: root/compiler/rustc_borrowck/src
diff options
context:
space:
mode:
authorMatthias Krüger <476013+matthiaskrgr@users.noreply.github.com>2025-03-10 09:32:15 +0100
committerGitHub <noreply@github.com>2025-03-10 09:32:15 +0100
commit86065acbc312c272debd955f46cb58770ba4f43d (patch)
tree94583cb2520ad8573fc81bf3a95c41b06372bbb5 /compiler/rustc_borrowck/src
parent1ae083ddd54d37a0b0f4cb876ae8f6d22637cc45 (diff)
parent358355440598b138cb0af39977a90157507eb184 (diff)
downloadrust-86065acbc312c272debd955f46cb58770ba4f43d.tar.gz
rust-86065acbc312c272debd955f46cb58770ba4f43d.zip
Rollup merge of #138270 - StevenMia:master, r=compiler-errors
chore: Fix some comments

 Fix some comments
Diffstat (limited to 'compiler/rustc_borrowck/src')
-rw-r--r--compiler/rustc_borrowck/src/type_check/liveness/trace.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_borrowck/src/type_check/liveness/trace.rs b/compiler/rustc_borrowck/src/type_check/liveness/trace.rs
index dc35d5eb89c..32d398dc160 100644
--- a/compiler/rustc_borrowck/src/type_check/liveness/trace.rs
+++ b/compiler/rustc_borrowck/src/type_check/liveness/trace.rs
@@ -610,7 +610,7 @@ impl<'tcx> LivenessContext<'_, '_, '_, 'tcx> {
             Err(ErrorGuaranteed { .. }) => {
                 // We don't run dropck on HIR, and dropck looks inside fields of
                 // types, so there's no guarantee that it succeeds. We also
-                // can't rely on the the `ErrorGuaranteed` from `fully_perform` here
+                // can't rely on the `ErrorGuaranteed` from `fully_perform` here
                 // because it comes from delay_span_bug.
                 //
                 // Do this inside of a probe because we don't particularly care (or want)