Skip to content

Commit f7e5bc9

Browse files
authored
Add FS-1080 (#73)
1 parent fd99233 commit f7e5bc9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spec/lexical-analysis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ token float =
402402
int (. int?)? (e|E) (+|-)? int
403403
404404
token ieee32 =
405-
| float [Ff] For example, 3.0F or 3.0f
405+
| (float | int) [Ff] For example, 3.0F, 3.0f or 3f
406406
| xint 'lf' For example, 0x00000000lf
407407
token ieee64 =
408408
| float For example, 3.0

spec/rfc-status.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
| F# 5.0 | FS-1075 | [Nullable Interop](https://github.com/fsharp/fslang-design/tree/main/FSharp-5.0/FS-1075-nullable-interop.md) | |
5454
| F# 5.0 | FS-1077 | [3D/4D Fixed Index Slicing](https://github.com/fsharp/fslang-design/tree/main/FSharp-5.0/FS-1077-3d-4d-fixed-index-slicing.md) | |
5555
| F# 5.0 | FS-1077 | [Tolerant Slicing](https://github.com/fsharp/fslang-design/tree/main/FSharp-5.0/FS-1077-tolerant-slicing.md) | |
56-
| F# 5.0 | FS-1080 | [Float32 Without Dot](https://github.com/fsharp/fslang-design/tree/main/FSharp-5.0/FS-1080-float32-without-dot.md) | |
56+
| F# 5.0 | FS-1080 | [Float32 Without Dot](https://github.com/fsharp/fslang-design/tree/main/FSharp-5.0/FS-1080-float32-without-dot.md) | [completed](https://github.com/fsharp/fslang-spec/pull/73) |
5757
| F# 5.0 | FS-1082 | [Uint Type Abbreviation](https://github.com/fsharp/fslang-design/tree/main/FSharp-5.0/FS-1082-uint-type-abbreviation.md) | |
5858
| F# 5.0 | FS-1085 | [Nameof Pattern](https://github.com/fsharp/fslang-design/tree/main/FSharp-5.0/FS-1085-nameof-pattern.md) | |
5959
| F# 5.0 | FS-1089 | [Allow String Everywhere](https://github.com/fsharp/fslang-design/tree/main/FSharp-5.0/FS-1089-allow-string-everywhere.md) | |

0 commit comments

Comments
 (0)