Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
James-Yu committed Nov 2, 2023
1 parent faf2de3 commit f90f46c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export class Builder {

await vscode.workspace.saveAll()

this.createOuputSubFolders(rootFile)
this.createOutputSubFolders(rootFile)

const tools = this.createBuildTools(rootFile, langId, recipeName)

Expand Down Expand Up @@ -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)) {
Expand Down

0 comments on commit f90f46c

Please sign in to comment.