Skip to content

Commit

Permalink
Fix typos in es5.d.ts (microsoft#46321)
Browse files Browse the repository at this point in the history
  • Loading branch information
we-ai committed Oct 21, 2021
1 parent 22f37cd commit 5725cfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/es5.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<T>(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<T extends Function>(f: T): T;

Expand Down

0 comments on commit 5725cfe

Please sign in to comment.