about summary refs log tree commit diff
diff options
context:
space:
mode:
authorXAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com>2020-03-24 18:23:46 +0100
committerGitHub <noreply@github.com>2020-03-24 18:23:46 +0100
commit5baef9695d94f5fa74317f004fc3543bcc148a68 (patch)
tree5c5b3248f1dcf302f0af74dc856c91b96ddb8e0f
parentcf06475e3404c6c372600ea6ab51612cf1ebe1e5 (diff)
downloadrust-5baef9695d94f5fa74317f004fc3543bcc148a68.tar.gz
rust-5baef9695d94f5fa74317f004fc3543bcc148a68.zip
Update RELEASES.md
Co-Authored-By: Mark Rousskov <mark.simulacrum@gmail.com>
-rw-r--r--RELEASES.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/RELEASES.md b/RELEASES.md
index ad70c370d56..711e3217fb4 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -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).