From 004ab1923ce5707ff39437ae8e9cff2cf38d4e9e Mon Sep 17 00:00:00 2001 From: Daniel P H Fox Date: Sat, 19 Aug 2023 21:01:10 +0100 Subject: [PATCH] Fix syntax inconsistency mistake --- rfcs/syntax-static-imports.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rfcs/syntax-static-imports.md b/rfcs/syntax-static-imports.md index 183c379a..744a67cb 100644 --- a/rfcs/syntax-static-imports.md +++ b/rfcs/syntax-static-imports.md @@ -151,7 +151,7 @@ To only import certain members from a module, their identifiers can be listed: ```Lua 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).