diff --git a/packages/cli-kit/src/public/common/object.ts b/packages/cli-kit/src/public/common/object.ts index 23e6e122df..9115370a55 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.