From a6ece9cfa3e4de1c8c65ec8c169d594d52423f91 Mon Sep 17 00:00:00 2001 From: hyjiacan Date: Tue, 20 Dec 2016 09:03:01 +0800 Subject: [PATCH] Update module.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 拼写错误 --- docs/module.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/module.md b/docs/module.md index bde9dda..cade8f6 100644 --- a/docs/module.md +++ b/docs/module.md @@ -451,7 +451,7 @@ export { foo, bar } from 'my_module'; // 等同于 import { foo, bar } from 'my_module'; -export { foo, boo}; +export { foo, bar }; ``` 上面代码中,`export`和`import`语句可以结合在一起,写成一行。