Skip to content

Commit 6e990b7

Browse files
committed
chore: fix typo
1 parent b701ccd commit 6e990b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types.ts

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

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

0 commit comments

Comments
 (0)