Skip to content

Commit 188c60c

Browse files
committed
Fixing minor typo
1 parent 641627e commit 188c60c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,8 +388,8 @@ import * as util from 'math/addition'
388388
Lastly, we can use destructuring to import a list of values from a file:
389389

390390
```javascript
391-
import * as addtionUtil from 'math/addtion';
392-
const { sumTwo, sumThree } = addtionUtil;
391+
import * as additionUtil from 'math/addtion';
392+
const { sumTwo, sumThree } = additionUtil;
393393
```
394394

395395
or when we are importing the default object but we want to grab some of the functions on the object:

0 commit comments

Comments
 (0)