diff options
author | Aylur <[email protected]> | 2024-09-13 15:46:29 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-09-13 15:46:29 +0200 |
commit | e9f9de6ba557de6a553f03de813af0fdbdbec047 (patch) | |
tree | 69eed116cd59d24cbb79a0415866a99ff6055414 | |
parent | 6fce8da11ac7dad427e4594beffdf60f109768e7 (diff) | |
parent | 8147e6dba3acaee5c99b3b3d4eb6c46146d991a5 (diff) |
Merge pull request #7 from marleypowell/patch-1
docs: fixed typo in faq.md
-rw-r--r-- | docs/ags/faq.md | 2 |
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}` }) |