From 4ef712c17e0ac53cfc133e0a6bc0516e7c17f0af Mon Sep 17 00:00:00 2001 From: Tech-Savvy Builder Date: Mon, 18 May 2026 18:36:19 -0700 Subject: [PATCH 1/2] =?UTF-8?q?Fix=20grammar=20typo=20in=20Set#size=20JSDo?= =?UTF-8?q?c:=20'in=20Set'=20=E2=86=92=20'in=20the=20Set'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lib/es2015.collection.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/es2015.collection.d.ts b/src/lib/es2015.collection.d.ts index 43129531845e4..a01b21dded868 100644 --- a/src/lib/es2015.collection.d.ts +++ b/src/lib/es2015.collection.d.ts @@ -94,7 +94,7 @@ interface Set { */ has(value: T): boolean; /** - * @returns the number of (unique) elements in Set. + * @returns the number of (unique) elements in the Set. */ readonly size: number; } From 5a27cf1df39e9c4e523f687d2aef21b3cdfc2367 Mon Sep 17 00:00:00 2001 From: niteagent <75220825+driphtyio@users.noreply.github.com> Date: Mon, 1 Jun 2026 22:44:21 -0700 Subject: [PATCH 2/2] Fix JSDoc grammar: 'returns a undefined' -> 'returns undefined' --- src/lib/es2015.symbol.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/es2015.symbol.d.ts b/src/lib/es2015.symbol.d.ts index 9ede0239fafbe..32bb690d3189c 100644 --- a/src/lib/es2015.symbol.d.ts +++ b/src/lib/es2015.symbol.d.ts @@ -19,7 +19,7 @@ interface SymbolConstructor { /** * Returns a key from the global symbol registry matching the given Symbol if found. - * Otherwise, returns a undefined. + * Otherwise, returns undefined. * @param sym Symbol to find the key for. */ keyFor(sym: symbol): string | undefined;