some typos fixed

This commit is contained in:
juanelas 2020-04-07 01:09:43 +02:00
parent e426366eb0
commit 7214502ddf
2 changed files with 6 additions and 10 deletions

View File

@ -36,11 +36,9 @@ Import your module as :
- JavaScript native browser ES6 mod - JavaScript native browser ES6 mod
```html ```html
<script type="module"> <script type="module">
import * as bigintModArith from 'lib/index.browser.bundle.mod.js' // Use you actual path to the broser mod bundle import * as bigintModArith from 'lib/index.browser.bundle.mod.js' // Use you actual path to the broser mod bundle
... // your code here ... // your code here
</script> </script>
import as bcu from 'bigint-mod-arith'
... // your code here
``` ```
- JavaScript native browser IIFE - JavaScript native browser IIFE
```html ```html

View File

@ -36,11 +36,9 @@ Import your module as :
- JavaScript native browser ES6 mod - JavaScript native browser ES6 mod
```html ```html
<script type="module"> <script type="module">
import * as bigintModArith from 'lib/index.browser.bundle.mod.js' // Use you actual path to the broser mod bundle import * as bigintModArith from 'lib/index.browser.bundle.mod.js' // Use you actual path to the broser mod bundle
... // your code here ... // your code here
</script> </script>
import as bcu from 'bigint-mod-arith'
... // your code here
``` ```
- JavaScript native browser IIFE - JavaScript native browser IIFE
```html ```html