diff --git a/src/utils/proxyLazy.ts b/src/utils/proxyLazy.ts index 091240338..6aa04bf08 100644 --- a/src/utils/proxyLazy.ts +++ b/src/utils/proxyLazy.ts @@ -7,7 +7,7 @@ import { makeLazy } from "./misc"; * @returns Proxy * * Note that the example below exists already as an api, see {@link lazyWebpack} - * @example const mod = proxyLazy(makeLazy(() => findByProps("blah"))); console.log(mod.blah); + * @example const mod = proxyLazy(() => findByProps("blah")); console.log(mod.blah); */ export function proxyLazy(factory: () => T): T { const lazy = makeLazy(factory);