summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarley <[email protected]>2024-09-13 09:13:37 +0100
committerGitHub <[email protected]>2024-09-13 09:13:37 +0100
commit8147e6dba3acaee5c99b3b3d4eb6c46146d991a5 (patch)
tree69eed116cd59d24cbb79a0415866a99ff6055414 /docs
parent6fce8da11ac7dad427e4594beffdf60f109768e7 (diff)
docs: fixed typo in faq.md
Diffstat (limited to 'docs')
-rw-r--r--docs/ags/faq.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ags/faq.md b/docs/ags/faq.md
index ae3e4fc..61c9bff 100644
--- a/docs/ags/faq.md
+++ b/docs/ags/faq.md
@@ -149,7 +149,7 @@ Then it can be used with `bind`.
```tsx
function MyWidget() {
- const myvar = new MyVariableValue()
+ const myvar = new MyVariable()
const label = bind(myvar).as(({ string, number }) => {
return `${string} ${number}`
})