fix docs not building due to typo (#3259)

oops

### Change Type

- [x] `docs` — Changes to the documentation, examples, or templates.
- [x] `bugfix` — Bug fix
pull/2861/head
alex 2024-03-25 15:34:43 +00:00 zatwierdzone przez GitHub
rodzic 05f58f7c2a
commit 2d7e9a31df
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -24726,7 +24726,7 @@
{
"kind": "Function",
"canonicalReference": "@tldraw/editor!isSafeFloat:function(1)",
"docComment": "/**\n * ] Check if a float is safe to use. ie: Not too big or small.\n *\n * @public\n */\n",
"docComment": "/**\n * Check if a float is safe to use. ie: Not too big or small.\n *\n * @public\n */\n",
"excerptTokens": [
{
"kind": "Content",

Wyświetl plik

@ -349,7 +349,7 @@ export function toFixed(v: number) {
return Math.round(v * 1e2) / 1e2
}
/**]
/**
* Check if a float is safe to use. ie: Not too big or small.
* @public
*/