Skip to content

Commit

Permalink
Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
ruanyf committed Dec 20, 2016
2 parents 0d21c13 + 904dd9d commit 67f9495
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/module.md
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ export { foo, bar } from 'my_module';

// 等同于
import { foo, bar } from 'my_module';
export { foo, boo};
export { foo, bar };
```

上面代码中,`export``import`语句可以结合在一起,写成一行。
Expand Down

0 comments on commit 67f9495

Please sign in to comment.