diff --git a/src/librustc_mir/transform/qualify_consts.rs b/src/librustc_mir/transform/qualify_consts.rs index 53f3f226b24b..ca676cf19455 100644 --- a/src/librustc_mir/transform/qualify_consts.rs +++ b/src/librustc_mir/transform/qualify_consts.rs @@ -48,9 +48,8 @@ enum Mode { } impl Mode { - /// Determine whether we are running in "const context". "const context" refers - /// to code type-checked according to the rules of the "const type system": - /// the bodies of const/static items and `const fn`. + /// Determine whether we have to do full const-checking because syntactically, we + /// are required to be "const". #[inline] fn requires_const_checking(self) -> bool { self != Mode::NonConstFn