From d636aec3514874274f2acc8a6897c451ac380d1f Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 10 May 2018 11:28:11 -0700 Subject: Rename the 2018 edition lint names * `rust_2018_breakage` -> `rust_2018_compatibility` - the lint for ensuring that your code, in the 2015 edition, is compatible with the 2018 edition's semantics. This is required to pass *before* you enable the 2018 edition. * `rust_2018_migration` -> `rust_2018_idioms` - the lint for writing idiomatic code after you've already enabled the 2018 edition --- src/libsyntax/edition.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libsyntax/edition.rs') diff --git a/src/libsyntax/edition.rs b/src/libsyntax/edition.rs index 7341941c242..c98b54581f3 100644 --- a/src/libsyntax/edition.rs +++ b/src/libsyntax/edition.rs @@ -50,8 +50,8 @@ impl fmt::Display for Edition { impl Edition { pub fn lint_name(&self) -> &'static str { match *self { - Edition::Edition2015 => "rust_2015_breakage", - Edition::Edition2018 => "rust_2018_breakage", + Edition::Edition2015 => "rust_2015_compatibility", + Edition::Edition2018 => "rust_2018_compatibility", } } -- cgit 1.4.1-3-g733a5