Missed a spot.

This commit is contained in:
Alexander McCord 2022-02-28 13:32:57 -08:00 committed by GitHub
parent 70c00b375e
commit b7dd56daa9
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 '}'
```