diff options
author | Veetaha <[email protected]> | 2020-01-22 10:39:32 +0000 |
---|---|---|
committer | Veetaha <[email protected]> | 2020-01-22 11:02:21 +0000 |
commit | 1ac105056a3f751c3b75a1cbffaa9c5cdafef576 (patch) | |
tree | 3b9bd1c6e46fb4e806af00ebd05c7aec6ebdadd7 /crates/ra_syntax/src/ast | |
parent | b6be1b6f6122c0a6bdfa18813870a197a4be51bf (diff) |
Fixed a typo
Diffstat (limited to 'crates/ra_syntax/src/ast')
-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 | ||