Skip to content

Commit

Permalink
Fix typo in readme (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky authored Oct 8, 2022
1 parent acba59a commit fd67dc5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ console.log(figures.tick);
// On terminals with Unicode symbols: ✔︎
// On other terminals: √

console.log(figures.mainSymbols.tick);
console.log(mainSymbols.tick);
// On all terminals: ✔︎

console.log(figures.fallbackSymbols.tick);
console.log(fallbackSymbols.tick);
// On all terminals: √

console.log(figures.replaceSymbols('✔︎ check'));
console.log(replaceSymbols('✔︎ check'));
// On terminals with Unicode symbols: ✔︎ check
// On other terminals: √ check
```
Expand Down

0 comments on commit fd67dc5

Please sign in to comment.