Skip to content

Commit 80af131

Browse files
committed
Fix type of Nullable.t which was not untagged in the implementation.
1 parent 199633b commit 80af131

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Next version
44

55
- BREAKING: Fixes the type of `RegExp.Result.t` to be `array<option<string>>` instead of `array<string>`. https://github.com/rescript-association/rescript-core/pull/234.
6+
- Fix type of `Nullable.t` which was not untagged in the implementation. https://github.com/rescript-association/rescript-core/pull/235
67

78
## 1.4.0
89

src/Core__Nullable.res

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@unboxed
12
type t<'a> = Js.Nullable.t<'a> =
23
| Value('a)
34
| @as(null) Null

0 commit comments

Comments
 (0)