Skip to content

Commit fab8e9b

Browse files
committed
cargo format
1 parent 4fd7ad9 commit fab8e9b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

crates/ra_syntax/src/ast/expr_extensions.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,7 @@ impl ast::Literal {
247247
// The lexer treats e.g. `1f64` as an integer literal. See
248248
// https://github.com/rust-analyzer/rust-analyzer/issues/1592
249249
// and the comments on the linked PR.
250-
let float_suffix_list = [
251-
"f32", "f64"
252-
];
250+
let float_suffix_list = ["f32", "f64"];
253251

254252
let text = self.token().text().to_string();
255253

0 commit comments

Comments
 (0)