File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -287,15 +287,15 @@ pub fn subcommand(name: &'static str) -> App {
287
287
] )
288
288
}
289
289
290
- // Determines whether or not to gate `--profile` as unstable when resolving it.
290
+ /// Determines whether or not to gate `--profile` as unstable when resolving it.
291
291
pub enum ProfileChecking {
292
- // `cargo rustc` historically has allowed "test", "bench", and "check". This
293
- // variant explicitly allows those.
292
+ /// `cargo rustc` historically has allowed "test", "bench", and "check". This
293
+ /// variant explicitly allows those.
294
294
LegacyRustc ,
295
- // `cargo check` and `cargo fix` historically has allowed "test". This variant
296
- // explicitly allows that on stable.
295
+ /// `cargo check` and `cargo fix` historically has allowed "test". This variant
296
+ /// explicitly allows that on stable.
297
297
LegacyTestOnly ,
298
- // All other commands, which allow any valid custom named profile.
298
+ /// All other commands, which allow any valid custom named profile.
299
299
Custom ,
300
300
}
301
301
You can’t perform that action at this time.
0 commit comments