Skip to content

Commit a346bc2

Browse files
committed
Lazyily -> Lazily after #1541
1 parent ad39158 commit a346bc2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/plugos/plug.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class Plug<HookT> {
2020
this.sandbox = sandboxFactory(this);
2121
}
2222

23-
static async createLazyily<HookT>(
23+
static async createLazily<HookT>(
2424
system: System<HookT>,
2525
cacheKey: string,
2626
cacheHash: number,

lib/plugos/system.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export class System<HookT> extends EventEmitter<SystemEvents<HookT>> {
147147
cacheKey: string,
148148
cacheHash: number = -1,
149149
): Promise<Plug<HookT>> {
150-
const plug = await Plug.createLazyily(
150+
const plug = await Plug.createLazily(
151151
this,
152152
cacheKey,
153153
cacheHash,

0 commit comments

Comments
 (0)