about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAndre Bogus <bogusandre@gmail.com>2020-01-17 10:15:14 +0100
committerAndre Bogus <bogusandre@gmail.com>2020-01-18 09:40:36 +0100
commitff5fb19bbd7f9885c32009957fa7f7e2b42e9e16 (patch)
treea1d87c45b0a9a16a73437b6e7c0bcc37d047690c /src
parente36a33fac779458b65ae6b45c692a1700b08e506 (diff)
downloadrust-ff5fb19bbd7f9885c32009957fa7f7e2b42e9e16.tar.gz
rust-ff5fb19bbd7f9885c32009957fa7f7e2b42e9e16.zip
Downgrade range_plus_one to pedantic
Diffstat (limited to 'src')
-rw-r--r--src/lintlist/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lintlist/mod.rs b/src/lintlist/mod.rs
index 9cad1ac786a..eee16fcd312 100644
--- a/src/lintlist/mod.rs
+++ b/src/lintlist/mod.rs
@@ -1654,7 +1654,7 @@ pub const ALL_LINTS: [Lint; 347] = [
     },
     Lint {
         name: "range_plus_one",
-        group: "complexity",
+        group: "pedantic",
         desc: "`x..(y+1)` reads better as `x..=y`",
         deprecation: None,
         module: "ranges",