From bde077ef4831baf6dcaa0229f8ef454905638731 Mon Sep 17 00:00:00 2001 From: Warren Lu Date: Thu, 21 Oct 2021 14:59:01 -0400 Subject: [PATCH] Fix typos in es5.d.ts (#46321) --- src/lib/es5.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/es5.d.ts b/src/lib/es5.d.ts index f8715e493735a..b10358a0f7e9d 100644 --- a/src/lib/es5.d.ts +++ b/src/lib/es5.d.ts @@ -196,13 +196,13 @@ interface ObjectConstructor { /** * Prevents the modification of existing property attributes and values, and prevents the addition of new properties. - * @param o Object on which to lock the attributes. + * @param a Object on which to lock the attributes. */ freeze(a: T[]): readonly T[]; /** * Prevents the modification of existing property attributes and values, and prevents the addition of new properties. - * @param o Object on which to lock the attributes. + * @param f Object on which to lock the attributes. */ freeze(f: T): T;