diff options
Diffstat (limited to 'crates/ra_syntax/src')
-rw-r--r-- | crates/ra_syntax/src/ast/expr_extensions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/ast/expr_extensions.rs b/crates/ra_syntax/src/ast/expr_extensions.rs index c91dd2bf4..69de23d58 100644 --- a/crates/ra_syntax/src/ast/expr_extensions.rs +++ b/crates/ra_syntax/src/ast/expr_extensions.rs | |||
@@ -323,7 +323,7 @@ impl ast::Literal { | |||
323 | match token.kind() { | 323 | match token.kind() { |
324 | INT_NUMBER => { | 324 | INT_NUMBER => { |
325 | // FYI: there was a bug here previously, thus an if statement here is necessary. | 325 | // FYI: there was a bug here previously, thus an if statement here is necessary. |
326 | // The lexer treated e.g. `1f64` as an integer literal. See | 326 | // The lexer treats e.g. `1f64` as an integer literal. See |
327 | // https://github.com/rust-analyzer/rust-analyzer/issues/1592 | 327 | // https://github.com/rust-analyzer/rust-analyzer/issues/1592 |
328 | // and the comments on the linked PR. | 328 | // and the comments on the linked PR. |
329 | 329 | ||