mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Fix syntax inconsistency mistake
This commit is contained in:
parent
debb92ce14
commit
004ab1923c
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ To only import certain members from a module, their identifiers can be listed:
|
||||||
|
|
||||||
```Lua
|
```Lua
|
||||||
import thing1, type thing2, local thing3 from "foo/bar/baz"
|
import thing1, type thing2, local thing3 from "foo/bar/baz"
|
||||||
import not_baz = thing1, type thing2, local thing3 from "foo/bar/baz"
|
import thing1, type thing2, local thing3 from "foo/bar/baz" = not_baz
|
||||||
```
|
```
|
||||||
|
|
||||||
Unless only types are being imported, the module must return a table. All of the non-type identifiers in the list should correspond with members inside of that table (at least, members which can be found through analysis).
|
Unless only types are being imported, the module must return a table. All of the non-type identifiers in the list should correspond with members inside of that table (at least, members which can be found through analysis).
|
||||||
|
|
Loading…
Add table
Reference in a new issue