diff options
| author | daxpedda <daxpedda@users.noreply.github.com> | 2018-12-26 18:13:33 +0100 |
|---|---|---|
| committer | daxpedda <daxpedda@users.noreply.github.com> | 2018-12-26 18:13:33 +0100 |
| commit | 2d96ef1315ebf933be79533c6c39ec2e3d7d1b85 (patch) | |
| tree | 0507ce053cb2ed353e4b5d07b760e4fd224dcd68 | |
| parent | 197914439ac0354f48c35a8eb2b6c43a6999f7fc (diff) | |
| download | rust-2d96ef1315ebf933be79533c6c39ec2e3d7d1b85.tar.gz rust-2d96ef1315ebf933be79533c6c39ec2e3d7d1b85.zip | |
Rustfmt.
| -rw-r--r-- | clippy_lints/src/implicit_return.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/implicit_return.rs b/clippy_lints/src/implicit_return.rs index 912ed43aab3..dc1869ae04e 100644 --- a/clippy_lints/src/implicit_return.rs +++ b/clippy_lints/src/implicit_return.rs @@ -12,7 +12,7 @@ use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass}; use crate::rustc::{declare_tool_lint, lint_array}; use crate::rustc_errors::Applicability; use crate::syntax::{ast::NodeId, source_map::Span}; -use crate::utils::{snippet_opt, span_lint_and_then, in_macro}; +use crate::utils::{in_macro, snippet_opt, span_lint_and_then}; /// **What it does:** Checks for missing return statements at the end of a block. /// |
