From 06957e6b6ff4e57d98b2dd4f2d5be92112b825db Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Wed, 19 Jul 2023 19:24:10 +0900 Subject: [PATCH] docs: fix typo (#385) --- docs/deepmergeCustom.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {