aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorVendicated <vendicated@riseup.net>2022-10-14 21:40:10 +0200
committerVendicated <vendicated@riseup.net>2022-10-14 21:40:10 +0200
commit53794ec180daad2c7de8eac0db03a351527b227c (patch)
tree4260a94b439cc2d4210a14472259c924d4094644 /src/utils
parent296336535f6d23c586c7e83edf0420b58cbf011a (diff)
downloadVencord-53794ec180daad2c7de8eac0db03a351527b227c.tar.gz
Vencord-53794ec180daad2c7de8eac0db03a351527b227c.tar.bz2
Vencord-53794ec180daad2c7de8eac0db03a351527b227c.zip
Fix jsdoc
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/proxyLazy.ts2
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);