Skip to content
This repository was archived by the owner on Jul 31, 2018. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix typo in es6 modules proposal
  • Loading branch information
ethanresnick authored Sep 3, 2016
commit 2675f6f62b5cf16bc3e7c2478ae5a4d8325c9f21
2 changes: 1 addition & 1 deletion 002-es6-modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -457,8 +457,8 @@ import foo from './cjs.js';
foo(); // 2

import * as bar from './cjs.js';
bar.name; // 'two'
bar.default(); // 2
bar.name; // undefined
bar(); // throws, bar is not a function
```

Expand Down