about summary refs log tree commit diff
path: root/compiler/rustc_lint/src/passes.rs
diff options
context:
space:
mode:
authorJakub Beránek <berykubik@gmail.com>2025-04-09 17:56:56 +0200
committerJakub Beránek <berykubik@gmail.com>2025-06-23 17:35:49 +0200
commit637bf919eb1117662267d1f187062719532505c1 (patch)
treef53006ccdf4cd0b02fa1bf1e2c68e31ffe442c3a /compiler/rustc_lint/src/passes.rs
parentae2fc9722f08ef131407c1dc8057768868f65e8e (diff)
downloadrust-637bf919eb1117662267d1f187062719532505c1.tar.gz
rust-637bf919eb1117662267d1f187062719532505c1.zip
Fix doc comment
Diffstat (limited to 'compiler/rustc_lint/src/passes.rs')
-rw-r--r--compiler/rustc_lint/src/passes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_lint/src/passes.rs b/compiler/rustc_lint/src/passes.rs
index 409a23d1da0..b5756c0a187 100644
--- a/compiler/rustc_lint/src/passes.rs
+++ b/compiler/rustc_lint/src/passes.rs
@@ -92,7 +92,7 @@ macro_rules! expand_combined_late_lint_pass_methods {
 /// Combines multiple lints passes into a single lint pass, at compile time,
 /// for maximum speed. Each `check_foo` method in `$methods` within this pass
 /// simply calls `check_foo` once per `$pass`. Compare with
-/// `LateLintPassObjects`, which is similar, but combines lint passes at
+/// `RuntimeCombinedLateLintPass`, which is similar, but combines lint passes at
 /// runtime.
 #[macro_export]
 macro_rules! declare_combined_late_lint_pass {