Skip to content

Commit 9cd9111

Browse files
committed
Rename workoutNextFileName -> determineNextFileName
1 parent 1c7a1a8 commit 9cd9111

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/ql-vscode/src/skeleton-query-wizard.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export class SkeletonQueryWizard {
168168
this.storagePath,
169169
);
170170

171-
this.fileName = await this.workoutNextFileName(this.folderName);
171+
this.fileName = await this.determineNextFileName(this.folderName);
172172
await qlPackGenerator.createExampleQlFile(this.fileName);
173173
} catch (e: unknown) {
174174
void this.extLogger.log(
@@ -177,7 +177,7 @@ export class SkeletonQueryWizard {
177177
}
178178
}
179179

180-
private async workoutNextFileName(folderName: string): Promise<string> {
180+
private async determineNextFileName(folderName: string): Promise<string> {
181181
if (this.storagePath === undefined) {
182182
throw new Error("Workspace storage path is undefined");
183183
}

0 commit comments

Comments
 (0)