From 9bec360cf14b6df4e6abbdfcf05fac319040e9cc Mon Sep 17 00:00:00 2001 From: Mateusz Palichleb Date: Fri, 11 Jan 2019 21:40:26 +0100 Subject: [PATCH 1/2] Fixing a typo in README.md 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'" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc02430..bd6e72f 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ const Big = require('big.js'); ES6 module: ```javascript -import Big from 'big.mjs'; +import Big from 'big.js'; ``` ## Use From b51fbdf55bfef6e7260a9d99be5094659ef50673 Mon Sep 17 00:00:00 2001 From: Mateusz Palichleb Date: Sat, 12 Jan 2019 14:44:32 +0100 Subject: [PATCH 2/2] Revert mjs, change to relative path --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bd6e72f..ec3df64 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ const Big = require('big.js'); ES6 module: ```javascript -import Big from 'big.js'; +import Big from './big.mjs'; ``` ## Use