Skip to content

Commit e35190a

Browse files
authored
Update CHANGELOG.md
1 parent fa94627 commit e35190a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@
6565
- Fix: do `let f = (x, ~z) => x + z; f(1, ~z=2)` instead
6666
- Externals without `@val` annotations do not work anymore, and externals with `= ""` give an error.
6767
- Example: `external setTimeout: (unit => unit, int) => float = "setTimeout"` is not supported anymore.
68-
- Fix: use `[@val] external setTimeout: (unit => unit, int) => float = "setTimeout"` instead.
69-
- Example2: `[@val] external setTimeout: (unit => unit, int) => float = ""` is not supported anymore.
70-
- Fix2: use `[@val] external setTimeout: (unit => unit, int) => float = "setTimeout"` instead.
68+
- Fix: use `@val external setTimeout: (unit => unit, int) => float = "setTimeout"` instead.
69+
- Example2: `@val external setTimeout: (unit => unit, int) => float = ""` is not supported anymore.
70+
- Fix2: use `@val external setTimeout: (unit => unit, int) => float = "setTimeout"` instead.
7171
- Strings processed at compile-time don't need escaping anymore.
7272
- Example: `let blockCommentsRe = %re("/\\/\\*([^*]|[\\r\\n]|(\\*+([^*/]|[\\r\\n])))*\\*+\\//g")`.
7373
- Fix: use `let blockCommentsRe = %re("/\/\*([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+\//g")` instead.

0 commit comments

Comments
 (0)