about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorAxary <bastian_kauschke@hotmail.de>2018-11-16 19:35:13 +0100
committerAxary <bastian_kauschke@hotmail.de>2018-11-16 19:35:13 +0100
commit2be930bd03d3c9b9230ae3b9cc8fc30b83378900 (patch)
tree0960bfdfd061292aca353a330d7c8a83ff2dc144 /src/libsyntax/parse
parentfe23ffbda01d2033c98ec6cec7f51cb08f625ec9 (diff)
downloadrust-2be930bd03d3c9b9230ae3b9cc8fc30b83378900.tar.gz
rust-2be930bd03d3c9b9230ae3b9cc8fc30b83378900.zip
fix tidy (remove whitespace)
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index a4b01f485d3..18929af4718 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -5394,7 +5394,7 @@ impl<'a> Parser<'a> {
     fn parse_fn_args(&mut self, named_args: bool, allow_variadic: bool)
                      -> PResult<'a, (Vec<Arg> , bool)> {
         self.expect(&token::OpenDelim(token::Paren))?;
-        
+
         let sp = self.span;
         let mut variadic = false;
         let args: Vec<Option<Arg>> =