Skip to content

Commit 83d620b

Browse files
committed
run util/dev update_lints and cargo fmt --all
1 parent 4b736ff commit 83d620b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code.
99

10-
[There are 295 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
10+
[There are 296 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
1111

1212
We have a bunch of lint categories to allow you to choose how much Clippy is supposed to ~~annoy~~ help you:
1313

clippy_lints/src/dbg_macro.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
use crate::utils::{span_help_and_lint, span_lint_and_sugg, snippet_opt};
1+
use crate::utils::{snippet_opt, span_help_and_lint, span_lint_and_sugg};
22
use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
33
use rustc::{declare_tool_lint, lint_array};
4-
use syntax::ast;
54
use rustc_errors::Applicability;
6-
use syntax::tokenstream::TokenStream;
5+
use syntax::ast;
76
use syntax::source_map::Span;
7+
use syntax::tokenstream::TokenStream;
88

99
/// **What it does:** Checks for usage of dbg!() macro.
1010
///

0 commit comments

Comments
 (0)