We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad39158 commit a346bc2Copy full SHA for a346bc2
lib/plugos/plug.ts
@@ -20,7 +20,7 @@ export class Plug<HookT> {
20
this.sandbox = sandboxFactory(this);
21
}
22
23
- static async createLazyily<HookT>(
+ static async createLazily<HookT>(
24
system: System<HookT>,
25
cacheKey: string,
26
cacheHash: number,
lib/plugos/system.ts
@@ -147,7 +147,7 @@ export class System<HookT> extends EventEmitter<SystemEvents<HookT>> {
147
148
cacheHash: number = -1,
149
): Promise<Plug<HookT>> {
150
- const plug = await Plug.createLazyily(
+ const plug = await Plug.createLazily(
151
this,
152
cacheKey,
153
cacheHash,
0 commit comments