diff --git a/README.md b/README.md
index 8519fe55a9f..d3d82eb0752 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@
 
 A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code.
 
-[There are 295 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
+[There are 296 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
 
 We have a bunch of lint categories to allow you to choose how much Clippy is supposed to ~~annoy~~ help you:
 
diff --git a/clippy_lints/src/dbg_macro.rs b/clippy_lints/src/dbg_macro.rs
index ae551a0792d..d75970ce50a 100644
--- a/clippy_lints/src/dbg_macro.rs
+++ b/clippy_lints/src/dbg_macro.rs
@@ -1,10 +1,10 @@
-use crate::utils::{span_help_and_lint, span_lint_and_sugg, snippet_opt};
+use crate::utils::{snippet_opt, span_help_and_lint, span_lint_and_sugg};
 use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
 use rustc::{declare_tool_lint, lint_array};
-use syntax::ast;
 use rustc_errors::Applicability;
-use syntax::tokenstream::TokenStream;
+use syntax::ast;
 use syntax::source_map::Span;
+use syntax::tokenstream::TokenStream;
 
 /// **What it does:** Checks for usage of dbg!() macro.
 ///