Skip to content

Commit 8e1c2b8

Browse files
authored
Revert typo in Fable.AST.Fable.Type.Tuple genericArgs (#4436)
1 parent 3262e5c commit 8e1c2b8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Fable.AST/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
### Added
1313

1414
* Add `IsInlineIfLambda` to `Fable.AST.Fable.Ident` (by @MangelMaxime)
15+
* Revert typo in `Fable.AST.Fable.Type.Tuple` genericArgs (by @ncave)
1516

1617
## 5.0.0-rc.2 - 2026-03-10
1718

src/Fable.AST/Fable.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ type Type =
193193
| Regex
194194
| Number of kind: NumberKind * info: NumberInfo
195195
| Option of genericArg: Type * isStruct: bool
196-
| Tuple of genericArg: Type list * isStruct: bool
196+
| Tuple of genericArgs: Type list * isStruct: bool
197197
| Array of genericArg: Type * kind: ArrayKind
198198
| List of genericArg: Type
199199
| LambdaType of argType: Type * returnType: Type

0 commit comments

Comments
 (0)