Fix tidy: remove a trailing whitespace

This commit is contained in:
topecongiro 2019-05-21 23:17:59 +09:00
parent b07dbe1d44
commit 1f1a9176e7
1 changed files with 1 additions and 1 deletions

View 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