diff options
author | Vendicated <vendicated@riseup.net> | 2022-10-14 21:40:10 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-10-14 21:40:10 +0200 |
commit | 53794ec180daad2c7de8eac0db03a351527b227c (patch) | |
tree | 4260a94b439cc2d4210a14472259c924d4094644 /src/utils | |
parent | 296336535f6d23c586c7e83edf0420b58cbf011a (diff) | |
download | Vencord-53794ec180daad2c7de8eac0db03a351527b227c.tar.gz Vencord-53794ec180daad2c7de8eac0db03a351527b227c.tar.bz2 Vencord-53794ec180daad2c7de8eac0db03a351527b227c.zip |
Fix jsdoc
Diffstat (limited to 'src/utils')
-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 0912403..6aa04bf 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<T>(factory: () => T): T { const lazy = makeLazy(factory); |