Update docs

This commit is contained in:
Aaron Smith 2023-09-21 10:29:14 +01:00
parent 8a4aae1be9
commit 4b877ce8ff
4 changed files with 20 additions and 25 deletions

View file

@ -23,7 +23,7 @@ local function Counter()
instance.Text = "count: " .. count()
end)
return count
return instance
end
```
@ -49,7 +49,7 @@ local function Counter(props: { count: () -> number })
instance.Text = "count: " .. count()
end)
return count
return instance
end
local count = source(0)