Skip to content

Commit

Permalink
Format with rustfmt 2018-12-10
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jan 20, 2019
1 parent c34356a commit 471a7ed
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/wrapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ use std::panic::{self, PanicInfo};
use std::path::PathBuf;
use std::str::FromStr;

use proc_macro;
use fallback;
use proc_macro;

use {Delimiter, Punct, Spacing, TokenTree};

Expand Down Expand Up @@ -578,7 +578,9 @@ impl Group {
};
Group::Compiler(proc_macro::Group::new(delimiter, stream))
}
TokenStream::Fallback(stream) => Group::Fallback(fallback::Group::new(delimiter, stream)),
TokenStream::Fallback(stream) => {
Group::Fallback(fallback::Group::new(delimiter, stream))
}
}
}

Expand Down

0 comments on commit 471a7ed

Please sign in to comment.