Skip to content

Commit f6c0a0f

Browse files
committed
Cargo fmt
1 parent 01311c6 commit f6c0a0f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/attr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
//! Format attributes and meta items.
1212
13-
use config::IndentStyle;
1413
use config::lists::*;
14+
use config::IndentStyle;
1515
use syntax::ast;
1616
use syntax::codemap::Span;
1717

src/comment.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
// Formatting and tools for comments.
1212

13-
use std::{self, iter, borrow::Cow};
13+
use std::{self, borrow::Cow, iter};
1414

1515
use itertools::{multipeek, MultiPeek};
1616
use syntax::codemap::Span;

src/config/lists.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
//! Configuration options related to rewriting a list.
1212
13-
use config::IndentStyle;
1413
use config::config_type::ConfigType;
14+
use config::IndentStyle;
1515

1616
/// The definitive formatting tactic for lists.
1717
#[derive(Eq, PartialEq, Debug, Copy, Clone)]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ use shape::Indent;
5454
use utils::use_colored_tty;
5555
use visitor::{FmtVisitor, SnippetProvider};
5656

57-
pub use config::Config;
5857
pub use config::summary::Summary;
58+
pub use config::Config;
5959

6060
#[macro_use]
6161
mod utils;

0 commit comments

Comments
 (0)