aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/ra_syntax/src/parsing/lexer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/parsing/lexer.rs b/crates/ra_syntax/src/parsing/lexer.rs
index 9f321cd06..7cd7110de 100644
--- a/crates/ra_syntax/src/parsing/lexer.rs
+++ b/crates/ra_syntax/src/parsing/lexer.rs
@@ -16,8 +16,8 @@ pub struct Token {
16 pub len: TextUnit, 16 pub len: TextUnit,
17} 17}
18 18
19#[derive(Debug)]
20/// Represents the result of parsing one token. Beware that the token may be malformed. 19/// Represents the result of parsing one token. Beware that the token may be malformed.
20#[derive(Debug)]
21pub struct ParsedToken { 21pub struct ParsedToken {
22 /// Parsed token. 22 /// Parsed token.
23 pub token: Token, 23 pub token: Token,