fix typo in hideRotateHandle method (#2473)

fix typo in hideRotateHandle method

### Change Type

- [ ] `patch` — Bug fix
- [ ] `minor` — New feature
- [ ] `major` — Breaking change
- [ ] `dependencies` — Changes to package dependencies[^1]
- [x] `documentation` — Changes to the documentation only[^2]
- [ ] `tests` — Changes to any test code only[^2]
- [ ] `internal` — Any other changes that don't affect the published
package[^2]
- [ ] I don't know

[^1]: publishes a `patch` release, for devDependencies use `internal`
[^2]: will not publish a new version

### Test Plan

1. Add a step-by-step description of how to test your PR here.
2.

- [ ] Unit Tests
- [ ] End to end tests

### Release Notes

- fix typo in hideRotateHandle method
pull/2474/head
Taha 2024-01-15 13:41:48 +00:00 zatwierdzone przez GitHub
rodzic 9c91b2c4cd
commit b7fb31f8f9
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -30417,7 +30417,7 @@
{
"kind": "Property",
"canonicalReference": "@tldraw/editor!ShapeUtil#hideRotateHandle:member",
"docComment": "/**\n * Whether the shape should hide its resize handles when selected.\n *\n * @public\n */\n",
"docComment": "/**\n * Whether the shape should hide its rotation handles when selected.\n *\n * @public\n */\n",
"excerptTokens": [
{
"kind": "Content",

Wyświetl plik

@ -150,7 +150,7 @@ export abstract class ShapeUtil<Shape extends TLUnknownShape = TLUnknownShape> {
hideResizeHandles: TLShapeUtilFlag<Shape> = () => false
/**
* Whether the shape should hide its resize handles when selected.
* Whether the shape should hide its rotation handles when selected.
*
* @public
*/