about summary refs log tree commit diff
path: root/src/librustc_parse/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/librustc_parse/config.rs')
-rw-r--r--src/librustc_parse/config.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_parse/config.rs b/src/librustc_parse/config.rs
index 1ff2003e82c..63892eb8995 100644
--- a/src/librustc_parse/config.rs
+++ b/src/librustc_parse/config.rs
@@ -1,7 +1,7 @@
 //! Process the potential `cfg` attributes on a module.
 //! Also determine if the module should be included in this configuration.
 //!
-//! This module properly belongs in syntax_expand, but for now it's tied into
+//! This module properly belongs in rustc_expand, but for now it's tied into
 //! parsing, so we leave it here to avoid complicated out-of-line dependencies.
 //!
 //! A principled solution to this wrong location would be to implement [#64197].