diff options
author | Jeremy Kolb <[email protected]> | 2019-07-04 18:26:44 +0100 |
---|---|---|
committer | Jeremy Kolb <[email protected]> | 2019-07-04 22:43:00 +0100 |
commit | 4ad9e986ad05e404df73701c098b71f73a847ca6 (patch) | |
tree | 2a2b2cc9dbee07d0aa92df883c807edbab264a85 /crates/ra_syntax/src/parsing | |
parent | c6a6e43372de9530ec7df0f38352466ed107e1a2 (diff) |
Some clippy fixes for 1.36
Diffstat (limited to 'crates/ra_syntax/src/parsing')
-rw-r--r-- | crates/ra_syntax/src/parsing/text_token_source.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/parsing/text_token_source.rs b/crates/ra_syntax/src/parsing/text_token_source.rs index f592b499f..64cb20ae8 100644 --- a/crates/ra_syntax/src/parsing/text_token_source.rs +++ b/crates/ra_syntax/src/parsing/text_token_source.rs | |||
@@ -28,7 +28,7 @@ pub(crate) struct TextTokenSource<'t> { | |||
28 | 28 | ||
29 | impl<'t> TokenSource for TextTokenSource<'t> { | 29 | impl<'t> TokenSource for TextTokenSource<'t> { |
30 | fn current(&self) -> PToken { | 30 | fn current(&self) -> PToken { |
31 | return self.curr.0; | 31 | self.curr.0 |
32 | } | 32 | } |
33 | 33 | ||
34 | fn lookahead_nth(&self, n: usize) -> PToken { | 34 | fn lookahead_nth(&self, n: usize) -> PToken { |