Skip to content

Commit

Permalink
Fix tick symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Mar 3, 2024
1 parent 12c343b commit b051c4e
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 @@ -272,7 +272,7 @@ console.log(replaceSymbols('✔︎ check'));
// On other terminals: √ check
console.log(replaceSymbols('✔︎ check', {useFallback: true}));
// On terminals with Unicode symbols: √ check
// On terminals with Unicode symbols: √ check
// On other terminals: √ check
```
*/
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ This can be set to `true` to always use fallback symbols, whether the terminal h
import {replaceSymbols} from 'figures';

console.log(replaceSymbols('✔︎ check', {useFallback: true}));
// On terminals with Unicode symbols: √ check
// On terminals with Unicode symbols: √ check
// On other terminals: √ check
```

Expand Down

0 comments on commit b051c4e

Please sign in to comment.