fix docs not building due to typo (#3259)

oops

### Change Type

- [x] `docs` — Changes to the documentation, examples, or templates.
- [x] `bugfix` — Bug fix
This commit is contained in:
alex 2024-03-25 15:34:43 +00:00 committed by GitHub
parent 05f58f7c2a
commit 2d7e9a31df
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -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",

View file

@ -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
*/