Skip to content

Commit

Permalink
Fixing a typo in README.md
Browse files Browse the repository at this point in the history
For "Set up" section in documentation, there was a typo in import example for ES6. 

"import Big from 'big.jms'" 
instead of 
"import Big from 'big.js'"
  • Loading branch information
koksyn committed Jan 11, 2019
1 parent d681c2e commit 9bec360
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const Big = require('big.js');
ES6 module:

```javascript
import Big from 'big.mjs';
import Big from 'big.js';
```
## Use

Expand Down

0 comments on commit 9bec360

Please sign in to comment.