diff options
author | Aylur <[email protected]> | 2024-10-10 16:58:11 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-10-10 16:58:11 +0000 |
commit | 921272adb4603d30d8a3fe41563d18dbabe3e1f5 (patch) | |
tree | 66b3a46df0f70bd30ac9ac52fa1a903fe2265622 /docs | |
parent | 800af1021c67ffe0ddcaed37ab09179d33102e35 (diff) |
docs: fix typo
Diffstat (limited to 'docs')
-rw-r--r-- | docs/guide/ags/gobject.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/guide/ags/gobject.md b/docs/guide/ags/gobject.md index a3080ee..83b7c45 100644 --- a/docs/guide/ags/gobject.md +++ b/docs/guide/ags/gobject.md @@ -74,7 +74,7 @@ class MyObj extends GObject.Object { @property(String) declare myProp: string - constructors() { + constructor() { super({ myProp: "default-value" }) } } |