Update RELEASES.md

Co-Authored-By: Mark Rousskov <mark.simulacrum@gmail.com>
This commit is contained in:
XAMPPRocky 2020-03-24 18:23:46 +01:00 committed by GitHub
parent cf06475e34
commit 5baef9695d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ Compiler
--------
- [You can now pass multiple lint flags to rustc to override the previous
flags.][67885] For example; `rustc -D unused -A unused-variables` denies
everything in the `unused` lint group unused except `unused-variables` which
everything in the `unused` lint group except `unused-variables` which
is explicitly allowed. However, passing `rustc -A unused-variables -D unused` denies
everything in the `unused` lint group **including** `unused-variables` since
the allow flag is specified before the deny flag (and therefore overridden).