From e50271d8c07aafb30b07a36026f99d1142f97021 Mon Sep 17 00:00:00 2001 From: Warren Lu Date: Tue, 12 Oct 2021 12:01:52 -0400 Subject: [PATCH] Fix typos in es5.d.ts --- 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;