Skip to content

Fix type of Nullable.t which was not untagged in the implementation. #235

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 14, 2024
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
Prev Previous commit
Use #"best fit"
  • Loading branch information
cristianoc committed Jun 14, 2024
commit c867c56056152a04a38477a44c9c5e8dcc2a90db
2 changes: 1 addition & 1 deletion src/intl/Core__Intl__Common.res
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
type localeMatcher = [#lookup | #bestFit]
type localeMatcher = [#lookup | #"best fit"]

type calendar = [
| #buddhist
Expand Down
2 changes: 1 addition & 1 deletion src/intl/Core__Intl__DateTimeFormat.res
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type timeZoneName = [
]

type hourCycle = [#h11 | #h12 | #h23 | #h24]
type formatMatcher = [#basic | #bestFit]
type formatMatcher = [#basic | #"best fit"]
type fractionalSecondDigits = [#0 | #1 | #2 | #3]

type options = {
Expand Down