From 53bd5a32e30493f4915e79bfb63b1eec846f1a7f Mon Sep 17 00:00:00 2001 From: Li Jin Date: Wed, 20 Apr 2022 09:19:59 +0800 Subject: add placeholder support for list destructuring. fix part of issue #93. --- doc/docs/doc/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc') diff --git a/doc/docs/doc/README.md b/doc/docs/doc/README.md index 5c43917..adff569 100755 --- a/doc/docs/doc/README.md +++ b/doc/docs/doc/README.md @@ -657,7 +657,7 @@ do The export statement offers a concise way to define modules. -* **Named Export** +* **Named Export** Named export will define a local variable as well as adding a field in the exported table. ```moonscript @@ -693,7 +693,7 @@ export class Something -* **Unnamed Export** +* **Unnamed Export** Unnamed export will add the target item into the array part of the exported table. ```moonscript @@ -723,7 +723,7 @@ export with tmp -* **Default Export** +* **Default Export** Using the **default** keyword in export statement to replace the exported table with any thing. ```moonscript -- cgit v1.2.3-55-g6feb