Format with rustfmt 0.3.4-nightly
diff --git a/examples/dump-ast.rs b/examples/dump-ast.rs
index 38a0384..0e2f67b 100644
--- a/examples/dump-ast.rs
+++ b/examples/dump-ast.rs
@@ -17,9 +17,12 @@
let mut src = String::new();
if filename != "-" {
let mut file = File::open(&filename).expect("Unable to open source file");
- file.read_to_string(&mut src).expect("Unable to read input file");
+ file.read_to_string(&mut src)
+ .expect("Unable to read input file");
} else {
- io::stdin().read_to_string(&mut src).expect("Unable to read stdin");
+ io::stdin()
+ .read_to_string(&mut src)
+ .expect("Unable to read stdin");
}
let ast = syn::parse_file(&src).expect("Unable to parse file");