]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
fix:spell checker (#6982)
authorHakimLu <hakimlu0512@gmail.com>
Fri, 28 Oct 2022 07:29:30 +0000 (15:29 +0800)
committerGitHub <noreply@github.com>
Fri, 28 Oct 2022 07:29:30 +0000 (09:29 +0200)
Co-authored-by: hakim <hakim.lu@yunlsp.com>
packages/shared/src/typeUtils.ts

index 3f3620c6672305025a2160838f53c78239b014be..0d767469b4d6ee2715ea263a3015db11aa83a312 100644 (file)
@@ -7,6 +7,6 @@ export type UnionToIntersection<U> = (
 // make keys required but keep undefined values
 export type LooseRequired<T> = { [P in keyof (T & Required<T>)]: T[P] }
 
-// If the the type T accepts type "any", output type Y, otherwise output type N.
+// If the type T accepts type "any", output type Y, otherwise output type N.
 // https://stackoverflow.com/questions/49927523/disallow-call-with-any/49928360#49928360
 export type IfAny<T, Y, N> = 0 extends 1 & T ? Y : N