Skip to content

Commit 53914ef

Browse files
jknightrbxaatxe
andauthored
Removed a duplicate, erroneous occurence of the word table. (#55)
Co-authored-by: ariel <[email protected]>
1 parent 96af82d commit 53914ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_pages/syntax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ for k, v in {1, 4, 9} do
207207
end
208208
```
209209

210-
This works for tables but can also be extended for tables or userdata by implementing `__iter` metamethod that is called before the iteration begins, and should return an iterator function like `next` (or a custom one):
210+
Further, iteration can be extended for tables or userdata by implementing the `__iter` metamethod which is called before the iteration begins, and should return an iterator function like `next` (or a custom one):
211211

212212
```lua
213213
local obj = { items = {1, 4, 9} }

0 commit comments

Comments
 (0)