Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore range_plus_one pedantic clippy lint
error: an inclusive range would be more readable --> src/expr.rs:2743:26 | 2743 | .subspan(part_end..part_end + 1) | ^^^^^^^^^^^^^^^^^^^^^^ help: use: `part_end..=part_end` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#range_plus_one = note: `-D clippy::range-plus-one` implied by `-D clippy::pedantic`
- Loading branch information