File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ macro_rules! unstable {
26
26
} ;
27
27
}
28
28
29
- macro_rules! msrv {
29
+ macro_rules! respected_msrv {
30
30
( $ver: literal) => {
31
31
concat!( "> MSRV: Respected as of " , $ver, "." )
32
32
} ;
Original file line number Diff line number Diff line change @@ -301,7 +301,7 @@ pub fn rustc_cfg_value(key: &str, value: &str) {
301
301
/// and other mistakes.
302
302
///
303
303
/// [`unexpected_cfgs`]: https://doc.rust-lang.org/rustc/lints/listing/warn-by-default.html#unexpected-cfgs
304
- #[ doc = msrv ! ( "1.80" ) ]
304
+ #[ doc = respected_msrv ! ( "1.80" ) ]
305
305
#[ track_caller]
306
306
pub fn rustc_check_cfgs ( keys : & [ & str ] ) {
307
307
if keys. is_empty ( ) {
@@ -332,7 +332,7 @@ pub fn rustc_check_cfgs(keys: &[&str]) {
332
332
/// and other mistakes.
333
333
///
334
334
/// [`unexpected_cfgs`]: https://doc.rust-lang.org/rustc/lints/listing/warn-by-default.html#unexpected-cfgs
335
- #[ doc = msrv ! ( "1.80" ) ]
335
+ #[ doc = respected_msrv ! ( "1.80" ) ]
336
336
#[ track_caller]
337
337
pub fn rustc_check_cfg_values ( key : & str , values : & [ & str ] ) {
338
338
if !is_ident ( key) {
You can’t perform that action at this time.
0 commit comments