diff --git a/docs/deepmergeCustom.md b/docs/deepmergeCustom.md index 40d445f4..ead13c9e 100644 --- a/docs/deepmergeCustom.md +++ b/docs/deepmergeCustom.md @@ -24,7 +24,7 @@ For example, skipping all properties under the key `"skipme"` of type `Date`: ```ts const customizedDeepmerge = deepmergeCustom({ - mergeOthers: (value, utils, meta) => { + mergeOthers: (values, utils, meta) => { if (meta?.key === "skipme") { const nonDateValues = values.filter((value) => !(value instanceof Date)); if (nonDateValues.length === 0) {