Skip to content

Commit bdb5658

Browse files
authored
ExtractStrict: Fix typo in docs (#1288)
1 parent 12ef5b2 commit bdb5658

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/extract-strict.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
A stricter version of {@link Extract<T, U>} that ensures every member of `U` can successfully extract something from `T`.
33
4-
For example, `StrictExtract<string | number | boolean, number | bigint>` will error because `bigint` cannot extract anything from `string | number | boolean`.
4+
For example, `ExtractStrict<string | number | boolean, number | bigint>` will error because `bigint` cannot extract anything from `string | number | boolean`.
55
66
@example
77
```

0 commit comments

Comments
 (0)