We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22f37cd commit 5725cfeCopy full SHA for 5725cfe
src/lib/es5.d.ts
@@ -196,13 +196,13 @@ interface ObjectConstructor {
196
197
/**
198
* 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.
+ * @param a Object on which to lock the attributes.
200
*/
201
freeze<T>(a: T[]): readonly T[];
202
203
204
205
+ * @param f Object on which to lock the attributes.
206
207
freeze<T extends Function>(f: T): T;
208
0 commit comments