Skip to content

Commit 5f24f39

Browse files
committed
chore: fix typo
1 parent 963bc7e commit 5f24f39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ type MergeDeep<New, Row> = {
145145
// Helper to check if a type is a plain object (not an array)
146146
type IsPlainObject<T> = T extends any[] ? false : T extends object ? true : false
147147

148-
// Merge the new result with the original (Result) when partial is true.
148+
// Merge the new result with the original (Result) when merge option is true.
149149
// If NewResult is an array, merge each element.
150150
export type MergePartialResult<NewResult, Result, Options> = Options extends { merge: true }
151151
? Result extends any[]

0 commit comments

Comments
 (0)