Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/intl/Core__Intl__DateTimeFormat.res
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ external formatRangeToParts: (
"type": string,
"value": string,
"source": string,
}> = "formatRange"
}> = "formatRangeToParts"
6 changes: 3 additions & 3 deletions src/intl/Core__Intl__PluralRules.res
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ external supportedLocalesOfWithOptions: (array<string>, {..}) => t =

type rule = [#zero | #one | #two | #few | #many | #other]

@send external select: (t, float) => rule = "format"
@send external selectInt: (t, int) => rule = "format"
@send external selectBigInt: (t, Core__BigInt.t) => rule = "format"
@send external select: (t, float) => rule = "select"
@send external selectInt: (t, int) => rule = "select"
@send external selectBigInt: (t, Core__BigInt.t) => rule = "select"