Skip to content

Commit

Permalink
Fix typo (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
jopemachine committed Jun 29, 2022
1 parent 2cc2aea commit e343d6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export interface Options {
import boxen from 'boxen';
console.log(boxen('foo bar', {
fullscreen: (width, height) => [width, height - 1];
fullscreen: (width, height) => [width, height - 1],
}));
```
*/
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ Pass a callback function to control box dimensions:
import boxen from 'boxen';

console.log(boxen('foo bar', {
fullscreen: (width, height) => [width, height - 1];
fullscreen: (width, height) => [width, height - 1],
}));
```

Expand Down

0 comments on commit e343d6f

Please sign in to comment.