Skip to content
This repository was archived by the owner on Feb 14, 2024. It is now read-only.

Commit 6c354df

Browse files
authored
Fix typo in initFileSystem method name
1 parent 8110c6f commit 6c354df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/xeus_server_kernel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export class XeusServerKernel implements IKernel {
4242
this._processWorkerMessage(e.data);
4343
};
4444
this._remote = wrap(this._worker);
45-
this.initFileSytem(options);
45+
this.initFileSystem(options);
4646
}
4747

4848
async handleMessage(msg: KernelMessage.IMessage): Promise<void> {
@@ -157,7 +157,7 @@ export class XeusServerKernel implements IKernel {
157157
return this._name;
158158
}
159159

160-
private async initFileSytem(options: XeusServerKernel.IOptions) {
160+
private async initFileSystem(options: XeusServerKernel.IOptions) {
161161
let driveName: string;
162162
let localPath: string;
163163

0 commit comments

Comments
 (0)