From a2286f8f243c4c02f3bf1823692c11ac589057c9 Mon Sep 17 00:00:00 2001 From: Clozent <45975432+Clozent@users.noreply.github.com> Date: Fri, 26 Sep 2025 16:57:00 +0300 Subject: [PATCH] fix: Fix typo in package-json module's index.js Fix what is most likely a typo in a comment in the index.js file of the package-json module. --- lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/index.js b/lib/index.js index fabe5fb..adcbac6 100644 --- a/lib/index.js +++ b/lib/index.js @@ -225,7 +225,7 @@ class PackageJson { this.#manifest = step({ content, originalContent: this.content }) } - // unknown properties will just be overwitten + // unknown properties will just be overwritten for (const [key, value] of Object.entries(content)) { if (!knownKeys.has(key)) { this.content[key] = value