Auto merge of #6386 - rust-lang:flip1995-patch-1, r=ebroto

Remove mention of possibility to specify the MSRV with a tilde/caret

As `@taiki-e` explained in https://github.com/rust-lang/rust-clippy/pull/6379#discussion_r530743279, mentioning this might be problematic.

changelog: none
This commit is contained in:
bors 2020-11-27 07:35:25 +00:00
commit f9b8a59615

View File

@ -214,7 +214,8 @@ fn main() {
} }
``` ```
Tilde/Caret version requirements (like `^1.0` or `~1.2`) can be specified as well. You can also omit the patch version when specifying the MSRV, so `msrv = 1.30`
is equivalent to `msrv = 1.30.0`.
Note: `custom_inner_attributes` is an unstable feature so it has to be enabled explicitly. Note: `custom_inner_attributes` is an unstable feature so it has to be enabled explicitly.