Skip to content

Commit 739775c

Browse files
authored
Update migrate-from-bucklescript-reason.mdx (#700)
1 parent ac2c7c2 commit 739775c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/docs/manual/latest/migrate-from-bucklescript-reason.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ npx rescript convert -all
4747
- Complete removal of semicolon (you can still write them).
4848
- No need for parentheses around `if`, `switch` and `try`.
4949
- Type arguments: from `option(int)` to `option<int>`.
50-
- Old interpolated string: from `{j|hello ${name}|j}` to `` j`hello ${name}` ``. Now with proper unicode support!
50+
- Old interpolated string: from `{j|hello ${name}|j}` to `` `hello ${name}` ``. Now with proper unicode support!
5151
- New interpolated string: `` `hello world` ``. Also supports multiline and unicode. `"hello world"` string is now singleline.
5252
- Polymorphic variants: from `` `red`` to `#red`.
5353
- Arrays: from `[|1,2,3|]` to `[1,2,3]`. In JS, arrays are the right default.

0 commit comments

Comments
 (0)