From b134ea32a5f508e39872b3488706545efd3844ef Mon Sep 17 00:00:00 2001 From: Arya Rizky Date: Wed, 20 May 2026 00:14:24 +0700 Subject: [PATCH] fix(lib): add missing article in Set#size JSDoc The comment for Set#size is missing the definite article before Set, producing ungrammatical text. Closes #63480 --- 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; }