You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -72,7 +72,7 @@ var result = await $$Bun.$`ls ${filename}`;
72
72
</CodeTab>
73
73
74
74
75
-
Of course you can also create your own tag functions in ReScript now as well, it is just a function with the following signature.
75
+
Of course you can also create your own tag function in ReScript now as well, it is just a function with the following signature.
76
76
77
77
```rescript
78
78
let myTagFunction : (array<string>, array<'param>) => 'output
@@ -158,7 +158,7 @@ This is particularly useful when dealing with [web components](https://developer
158
158
159
159
## Omittrailingundefinedinexternalfunction calls
160
160
161
-
ReScript 11's uncurried mode allows for much more ergonomic external function bindings, because trailing units were not needed anymore. But, this comes with a potential problem. All arguments, whether they're actually supplied or not, were printed as `undefined` in the resulting JS. This is handled better now, as trailing `undefined`s are automatically omitted.
161
+
ReScript 11's uncurried mode allows for much more ergonomic external function bindings, because trailing units are not needed anymore. But, this comes with a potential problem. All arguments, whether they're actually supplied or not, were printed as `undefined` in the resulting JS. This is handled better now, as trailing `undefined`s are automatically omitted.
@@ -200,7 +200,7 @@ var result2 = JSON.stringify(obj, undefined, 2);
200
200
201
201
Inspired by languages like [Elm](https://package.elm-lang.org/packages/elm/core/latest/Debug#todo) or [Gleam](https://tour.gleam.run/advanced-features/todo/), we introduced a new extension point: [`%todo`](/syntax-lookup#todo).
202
202
203
-
It is used to tell the compiler that some code still needs to be implemented and it will crash when exectuted.
203
+
It is used to tell the compiler that some code still needs to be implemented and it will crash when executed.
204
204
205
205
<CodeTab labels={["ReScript", "JS Output"]}>
206
206
@@ -240,7 +240,7 @@ Of course we also got a bunch of other changes and bug fixes in this release. Ch
240
240
241
241
242
242
## v12 is next
243
-
v11.1 marks the completion of the v11 versions feature wise. We will of course continue to support the v11 release series with bug fixes and other important updates. With this release however, our focus for new feature development will move to v12. You'll hear more about v12 and the plans for that version soon.
243
+
v11.1 marks the completion of the v11 versions feature wise. We will of course continue to support the v11 release series with bug fixes and other important updates. However, our focus for new feature development will move to v12. You'll hear more about v12 and the plans for that version soon.
0 commit comments