Skip to content

Commit 1315b15

Browse files
committed
[docs] Update readme
1 parent f8ecf59 commit 1315b15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1342,7 +1342,7 @@ const fn = (input: { id: number | string }) =>
13421342
#### Exhaustiveness checking
13431343

13441344
If your data structure contains several union types, you can pattern-match on several of them with a **single pattern**. TS-Pattern will keep track of the cases which have been handled and those which
1345-
haven't, so you never forget a to handle a case.
1345+
haven't, so you never forget to handle a case.
13461346

13471347
```ts
13481348
type Permission = 'editor' | 'viewer';

0 commit comments

Comments
 (0)