Skip to content

Commit ead20e7

Browse files
committed
fix build
1 parent 2de571f commit ead20e7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

markdown-pages/docs/manual/rescript-for-javascript-developers.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ For a guided migration workflow, see [Converting from JS](./converting-from-js.m
3333
| String concatenation | `"hello " ++ name` | ReScript uses `++` for strings. See [Primitive Types](./primitive-types.mdx). |
3434
| Interpolation | `` `hello ${name}` `` | Template strings work similarly. See [Primitive Types](./primitive-types.mdx). |
3535
| Equality | `===`, `!==`, `==`, `!=` | No coercive equality. `==` and `!=` are structural. See [Equality and Comparison](./equality-comparison.mdx). |
36-
| Numbers | `3`, `3.14`, `2.0 * 3.0` | Arithmetic operators work for both `int` and `float`. See [Primitive Types](./primitive-types.mdx). |
36+
| Numbers | `3`, `3.14`, `2.0 * 3.0` | Arithmetic operators work for both `int` and `float`. See [Primitive Types](./primitive-types.mdx). |
3737
| Records | `{x: 30, y: 20}` | Similar object syntax, but records are typed. See [Record](./record.mdx). |
3838
| Arrays | `[1, 2, 3]` | Arrays are homogeneous. See [Array and List](./array-and-list.mdx). |
3939
| Mixed fixed-size data | `(1, "Bob", true)` | Use tuples instead of heterogeneous arrays. See [Tuple](./tuple.mdx). |

0 commit comments

Comments
 (0)