aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/ast/expr_extensions.rs
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-01-22 10:39:56 +0000
committerVeetaha <[email protected]>2020-01-22 11:02:21 +0000
commitfa31841f1f497f84ceb15c0a8636a2bf836705da (patch)
treed9041707f979ed46fdb05a62a3875feee504a06b /crates/ra_syntax/src/ast/expr_extensions.rs
parent1ac105056a3f751c3b75a1cbffaa9c5cdafef576 (diff)
Fixed a typo
Diffstat (limited to 'crates/ra_syntax/src/ast/expr_extensions.rs')
-rw-r--r--crates/ra_syntax/src/ast/expr_extensions.rs2
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 69de23d58..539759450 100644
--- a/crates/ra_syntax/src/ast/expr_extensions.rs
+++ b/crates/ra_syntax/src/ast/expr_extensions.rs
@@ -322,7 +322,7 @@ impl ast::Literal {
322 322
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 bellow is necessary.
326 // The lexer treats 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.