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 authored and mprobst committed Jan 10, 2022
1 parent 8d8713a commit bde077e
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 bde077e

Please sign in to comment.