]> git.lizzy.rs Git - rust.git/commitdiff
Fix tidy: remove a trailing whitespace
authortopecongiro <seuchida@gmail.com>
Tue, 21 May 2019 14:17:59 +0000 (23:17 +0900)
committertopecongiro <seuchida@gmail.com>
Tue, 21 May 2019 14:17:59 +0000 (23:17 +0900)
src/libsyntax/parse/mod.rs

index 8c1810e3efa01da77d5104e7245b0bf237f3df21..d0af1afd8fdbdb8db455391d6a4dcb0ff0a6c025 100644 (file)
@@ -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