Skip to content

Commit 1cdd6e8

Browse files
JiaeKcristianoc
authored andcommitted
Fix typos in migrate-from-bucklescript-reason.mdx
1 parent 38ffb21 commit 1cdd6e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Enjoy the improved experience!
2626

2727
### Upgrade Individual Folders
2828

29-
This is useful for per-directory convertions:
29+
This is useful for per-directory conversions:
3030

3131
```console
3232
# *.rei, *.ml, *.mli,....
@@ -56,7 +56,7 @@ npx rescript convert -all
5656
- First class module: from `(module S: Student)` to `module(S: Student)`.
5757
- No custom infix operator for now (including `mod`).
5858
- Object access: from `settings##visible #= true` to `settings["visible"] = true`. Rejoice!
59-
- Object: from `Js.t({"age": int})` to just `{"age": int}`. The `Js.t` part is now uneeded.
59+
- Object: from `Js.t({"age": int})` to just `{"age": int}`. The `Js.t` part is now unneeded.
6060
- Attribute: from `[@myAttribute "hello"]` to `@myAttribute("hello")`. From `[%re bla]` to `%re(bla)`.
6161
- Removed dereference syntax `result^`. Just use `result.contents`.
6262
- `fun` pattern matching syntax removed.

0 commit comments

Comments
 (0)