mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Missed a spot.
This commit is contained in:
parent
70c00b375e
commit
b7dd56daa9
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ Formally, the grammar change is:
|
|||
- PropList = TablePropOrIndexer {fieldsep TablePropOrIndexer} [fieldsep]
|
||||
- TableType = '{' PropList '}
|
||||
+ TableEntry = TableProp | TableIndexer | TableMetatable
|
||||
+ TableEntries = TableEntry {fieldsep TablePropOrIndexer} [fieldsep]
|
||||
+ TableEntries = TableEntry {fieldsep TableEntry} [fieldsep]
|
||||
+ TableType = '{' TableEntries '}'
|
||||
```
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue