Skip to content

Commit

Permalink
- Fixed spelling mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Mohr committed Jul 13, 2022
1 parent 03d06e3 commit 6dcc977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { DependencyModal } from "./dependency-modal";
export default class MyPlugin extends Plugin {

override async onload() {
new DependencyModal(this.app, await doesProgramExist("tesseract"), await doesProgramExist("gmasd"), await doesProgramExist("gs")).open();
new DependencyModal(this.app, await doesProgramExist("tesseract"), await doesProgramExist("gm"), await doesProgramExist("gs")).open();
await loadSettings(this);
(await listAllFiles(this.app.vault)).forEach(async (file) => { await processFile(this, file, this.app.vault); });
this.registerEvent(this.app.vault.on("create", async (file) => {
Expand Down

0 comments on commit 6dcc977

Please sign in to comment.