Skip to content

Commit f880fda

Browse files
style: Fix typo (#3551)
1 parent ac395a0 commit f880fda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/utils/src/object.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { truncate } from './string';
1313
* @param source An object that contains a method to be wrapped.
1414
* @param name The name of the method to be wrapped.
1515
* @param replacementFactory A higher-order function that takes the original version of the given method and returns a
16-
* wrapped verstion. Note: The function returned by `replacementFactory` needs to be a non-arrow function, in order to
16+
* wrapped version. Note: The function returned by `replacementFactory` needs to be a non-arrow function, in order to
1717
* preserve the correct value of `this`, and the original method must be called using `origMethod.call(this, <other
1818
* args>)` or `origMethod.apply(this, [<other args>])` (rather than being called directly), again to preserve `this`.
1919
* @returns void

0 commit comments

Comments
 (0)