Skip to content

Commit 54d14e6

Browse files
committed
More fixes w.r.t. compiler master.
Unused `as` annotations are not picked up.
1 parent 80af131 commit 54d14e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/intl/Core__Intl__Common.res

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
type localeMatcher = [#lookup | @as("best fit") #bestFit]
1+
type localeMatcher = [#lookup | #bestFit]
22

33
type calendar = [
44
| #buddhist

src/intl/Core__Intl__DateTimeFormat.res

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ type timeZoneName = [
2626
]
2727

2828
type hourCycle = [#h11 | #h12 | #h23 | #h24]
29-
type formatMatcher = [#basic | @as("best fit") #bestFit]
29+
type formatMatcher = [#basic | #bestFit]
3030
type fractionalSecondDigits = [#0 | #1 | #2 | #3]
3131

3232
type options = {

0 commit comments

Comments
 (0)