mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 05:45:12 +00:00
fix: float display impl
This commit is contained in:
parent
a5d7ab54f9
commit
25f3e7a33c
2 changed files with 3 additions and 3 deletions
|
@ -3634,7 +3634,7 @@ const FOO$0: f32 = 1f32;
|
|||
```
|
||||
|
||||
```rust
|
||||
const FOO: f32 = 1
|
||||
const FOO: f32 = 1.0
|
||||
```
|
||||
|
||||
---
|
||||
|
@ -3656,7 +3656,7 @@ const FOO$0: f64 = 1.0f64;
|
|||
```
|
||||
|
||||
```rust
|
||||
const FOO: f64 = 1
|
||||
const FOO: f64 = 1.0
|
||||
```
|
||||
|
||||
---
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue