Skip to content

Commit e0b809a

Browse files
Fix superfluous apostrophe
1 parent d6751e2 commit e0b809a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/docs/manual/latest/variant.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ Here's a list of all possible things you can unbox:
365365
- `string`: `String(string)`
366366
- `float`: `Float(float)`. Note you can only have one of `float` or `int` because JavaScript only has `number` (not actually `int` and `float` like in ReScript) so we can't disambiguate between `float` and `int` at runtime.
367367
- `int`: `Int(int)`. See note above on `float`.
368-
- `bigint`: `BigInt(int)`. **Since 11.1** This is a distinct type from JavaScript's `number` type so you can use it beside either `float` or `int`.
368+
- `bigint`: `BigInt(int)`. **Since 11.1** This is a distinct type from JavaScripts `number` type so you can use it beside either `float` or `int`.
369369
- `bool`: `Boolean(bool)`
370370
- `array<'value>`: `List(array<string>)`
371371
- `('a, 'b, 'c)`: `Tuple((string, int, bool))`. Any size of tuples works, but you can have only one case of array or tuple in a variant.

0 commit comments

Comments
 (0)