From 7539c04d94b5adc924efb3f8fef90e4de18d39d3 Mon Sep 17 00:00:00 2001 From: niteagent <75220825+driphtyio@users.noreply.github.com> Date: Fri, 5 Jun 2026 16:12:43 -0700 Subject: [PATCH] =?UTF-8?q?Fix=20JSDoc=20grammar=20typo:=20'returns=20a=20?= =?UTF-8?q?undefined'=20=E2=86=92=20'returns=20undefined'=20(#63525)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Tech-Savvy Builder --- 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 9ede0239faf..32bb690d318 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;