Skip to content

Commit b7ac882

Browse files
committed
Fix tick symbol
1 parent 50c1934 commit b7ac882

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ console.log(replaceSymbols('✔ check'));
271271
// On terminals with Unicode symbols: ✔ check
272272
// On other terminals: √ check
273273
274-
console.log(replaceSymbols('✔ check', {useFallback: true}));
274+
console.log(replaceSymbols('✔ check', {useFallback: true}));
275275
// On terminals with Unicode symbols: √ check
276276
// On other terminals: √ check
277277
```

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ This can be set to `true` to always use fallback symbols, whether the terminal h
7979
import {replaceSymbols} from 'figures';
8080

8181
console.log(replaceSymbols('✔︎ check', {useFallback: true}));
82-
// On terminals with Unicode symbols: √ check
82+
// On terminals with Unicode symbols: √ check
8383
// On other terminals: √ check
8484
```
8585

0 commit comments

Comments
 (0)