Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangzhuang08 committed Dec 4, 2024
1 parent 8bbacd7 commit 2274cb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/frontend/ts-type.md
Original file line number Diff line number Diff line change
Expand Up @@ -384,9 +384,9 @@ I extends `${infer L}${infer R}` ?
: `${L}` extends '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' ?
R extends '' ?
L
: FilterOutNumberLiterature<R> extends never ?
: FilterOutNumberLiterature2<R> extends never ?
never
: `${L}${FilterOutNumberLiterature<R>}`
: `${L}${FilterOutNumberLiterature2<R>}`
: never
: never
// never
Expand Down

0 comments on commit 2274cb9

Please sign in to comment.