Skip to content

Commit 989ef8b

Browse files
Fix typo
1 parent 7068125 commit 989ef8b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/ql-vscode/src/common/vscode/file-path-discovery.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export abstract class FilePathDiscovery<T extends PathData> extends Discovery {
153153
let pathsUpdated = false;
154154
for (const path of this.changedFilePaths) {
155155
this.changedFilePaths.delete(path);
156-
if (await this.handledChangedPath(path)) {
156+
if (await this.handleChangedPath(path)) {
157157
pathsUpdated = true;
158158
}
159159
}
@@ -163,7 +163,7 @@ export abstract class FilePathDiscovery<T extends PathData> extends Discovery {
163163
}
164164
}
165165

166-
private async handledChangedPath(path: string): Promise<boolean> {
166+
private async handleChangedPath(path: string): Promise<boolean> {
167167
try {
168168
// If the path is not in the workspace then we don't want to be
169169
// tracking or displaying it, so treat it as if it doesn't exist.

0 commit comments

Comments
 (0)