Skip to content

Commit 6af90d6

Browse files
committed
Fix linting
1 parent a18d1ba commit 6af90d6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/api/packages.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -696,15 +696,15 @@ code will also work:
696696

697697
```js
698698
// ./index.js
699-
module.exports = 42
699+
module.exports = 42;
700700
```
701701

702702
```js
703703
// ./other.js
704-
console.log(require('@my/package'))
704+
console.log(require('@my/package'));
705705
```
706706

707-
```sh
707+
```bash
708708
node other.js
709709
# 42
710710
```

0 commit comments

Comments
 (0)