Fix language

This commit is contained in:
Ariel Barreiro 2024-02-16 11:04:57 -03:00 committed by GitHub
parent b368810ecc
commit 302ed1a0b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -92,7 +92,7 @@ _format = format # store reference to the built in format
format(x) = _format(x, {notation:"exponential"})
```
You can also do something like this to show the number with your default locale or providing a [custom one](https://www.w3.org/International/articles/language-tags/):
You can also do something like this to show the number with your default locale or provide a [custom one](https://www.w3.org/International/articles/language-tags/):
```
format(x) = x.toLocaleString();