From f90f46c14dcd237bcb6763968d16ccfa45b1a5d1 Mon Sep 17 00:00:00 2001 From: James Yu Date: Thu, 2 Nov 2023 19:21:06 +0000 Subject: [PATCH] Fix a typo --- src/components/builder.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/builder.ts b/src/components/builder.ts index 57f3fa60a..1c4307631 100644 --- a/src/components/builder.ts +++ b/src/components/builder.ts @@ -168,7 +168,7 @@ export class Builder { await vscode.workspace.saveAll() - this.createOuputSubFolders(rootFile) + this.createOutputSubFolders(rootFile) const tools = this.createBuildTools(rootFile, langId, recipeName) @@ -670,7 +670,7 @@ export class Builder { * latex command). If the output directory does not exist, the latex * commands simply fail. */ - private createOuputSubFolders(rootFile: string) { + private createOutputSubFolders(rootFile: string) { const rootDir = path.dirname(rootFile) let outDir = lw.manager.getOutDir(rootFile) if (!path.isAbsolute(outDir)) {