From 4ef712c17e0ac53cfc133e0a6bc0516e7c17f0af Mon Sep 17 00:00:00 2001 From: Tech-Savvy Builder Date: Mon, 18 May 2026 18:36:19 -0700 Subject: [PATCH] =?UTF-8?q?Fix=20grammar=20typo=20in=20Set#size=20JSDoc:?= =?UTF-8?q?=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; }