Skip to content

Commit e960a2b

Browse files
mwallnoeferchar0n
andauthored
docs(installation.md): add missing semicolon (#1632)
Does not work without it (strange error message shows up). According to https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import. Co-authored-by: Vladimir Gorej <[email protected]>
1 parent f46939f commit e960a2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/usage/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ After installed successfully:
1616

1717
[ES6 imports](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import)
1818
```js
19-
import SwaggerClient from 'swagger-client'
19+
import SwaggerClient from 'swagger-client';
2020
```
2121

2222
[CommonJS imports](https://en.wikipedia.org/wiki/CommonJS)
2323
```js
24-
const SwaggerClient = require('swagger-client')
24+
const SwaggerClient = require('swagger-client');
2525
```
2626

2727
### unpkg

0 commit comments

Comments
 (0)