diff options
Diffstat (limited to 'src/utils/proxyLazy.ts')
-rw-r--r-- | src/utils/proxyLazy.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/proxyLazy.ts b/src/utils/proxyLazy.ts index 364dd56..42b5a91 100644 --- a/src/utils/proxyLazy.ts +++ b/src/utils/proxyLazy.ts @@ -63,7 +63,7 @@ handler.getOwnPropertyDescriptor = (target, p) => { * @param factory lazy factory * @returns Proxy * - * Note that the example below exists already as an api, see {@link lazyWebpack} + * Note that the example below exists already as an api, see {@link findByPropsLazy} * @example const mod = proxyLazy(() => findByProps("blah")); console.log(mod.blah); */ export function proxyLazy<T>(factory: () => T): T { |