Skip to content

Commit 5725cfe

Browse files
authored
Fix typos in es5.d.ts (microsoft#46321)
1 parent 22f37cd commit 5725cfe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/es5.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -196,13 +196,13 @@ interface ObjectConstructor {
196196

197197
/**
198198
* Prevents the modification of existing property attributes and values, and prevents the addition of new properties.
199-
* @param o Object on which to lock the attributes.
199+
* @param a Object on which to lock the attributes.
200200
*/
201201
freeze<T>(a: T[]): readonly T[];
202202

203203
/**
204204
* Prevents the modification of existing property attributes and values, and prevents the addition of new properties.
205-
* @param o Object on which to lock the attributes.
205+
* @param f Object on which to lock the attributes.
206206
*/
207207
freeze<T extends Function>(f: T): T;
208208

0 commit comments

Comments
 (0)