about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authortopecongiro <seuchida@gmail.com>2019-05-21 23:17:59 +0900
committertopecongiro <seuchida@gmail.com>2019-05-21 23:17:59 +0900
commit1f1a9176e7963b43155ce56d2a4cea3bee4a4f7e (patch)
treec2e52ef00351653e8a3299d6f177ed87a414f287 /src/libsyntax/parse
parentb07dbe1d44038b84e722cbe1efe3201e8fa934d8 (diff)
downloadrust-1f1a9176e7963b43155ce56d2a4cea3bee4a4f7e.tar.gz
rust-1f1a9176e7963b43155ce56d2a4cea3bee4a4f7e.zip
Fix tidy: remove a trailing whitespace
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/mod.rs b/src/libsyntax/parse/mod.rs
index 8c1810e3efa..d0af1afd8fd 100644
--- a/src/libsyntax/parse/mod.rs
+++ b/src/libsyntax/parse/mod.rs
@@ -334,7 +334,7 @@ pub fn stream_to_parser(sess: &ParseSess, stream: TokenStream) -> Parser<'_> {
 /// Use this function when you are creating a parser from the token stream
 /// and also care about the current working directory of the parser (e.g.,
 /// you are trying to resolve modules defined inside a macro invocation).
-/// 
+///
 /// # Note
 ///
 /// The main usage of this function is outside of rustc, for those who uses