From adeb0a7a55a91dc4c27ee2eb9e728834d0901895 Mon Sep 17 00:00:00 2001 From: Aaron Stack Barnes Date: Fri, 22 May 2026 11:54:32 +0000 Subject: [PATCH] docs: fix typos in JSDoc comments for object utilities --- packages/cli-kit/src/public/common/object.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli-kit/src/public/common/object.ts b/packages/cli-kit/src/public/common/object.ts index 23e6e122df8..9115370a551 100644 --- a/packages/cli-kit/src/public/common/object.ts +++ b/packages/cli-kit/src/public/common/object.ts @@ -19,7 +19,7 @@ import lodashIsEmpty from 'lodash/isEmpty.js' * @param rhs - Another object to be merged. * @param arrayMergeStrategy - Strategy used to merge the array typed fields. Union strategy is used by default to avoid * duplicated elements. - * @returns A Javascrip tobject with th emerged objects. + * @returns A JavaScript object with the merged objects. */ export function deepMergeObjects( lhs: Partial, @@ -93,7 +93,7 @@ export function getPathValue(object: object, path: PropertyPath): T } /** - * Sets the value at path of object. If a portion of path doesn't exist, it's create. + * Sets the value at path of object. If a portion of path doesn't exist, it's created. * * @param object - The object to modify. * @param path - The path of the property to set.