]> git.lizzy.rs Git - rust.git/blobdiff - README.md
Auto merge of #6432 - giraffate:sync-from-rust, r=flip1995
[rust.git] / README.md
index e5cff0cc621ed1ba42099cbbda742a2baf5ad764..fddf0614a0b85d77b24dbb93c6463222e8d7bbce 100644 (file)
--- a/README.md
+++ b/README.md
@@ -182,7 +182,7 @@ cargo clippy -- -W clippy::lint_name
 ```
 
 This also works with lint groups. For example you
-can run Clippy with warnings for all lints enabled: 
+can run Clippy with warnings for all lints enabled:
 ```terminal
 cargo clippy -- -W clippy::pedantic
 ```
@@ -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.