Skip to content

Commit 71f02cc

Browse files
hopehadfieldrgrunber
authored andcommitted
Fixed typo in const METADATA_FILES_GENERATION
1 parent 0795557 commit 71f02cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ export namespace Commands {
287287

288288
export const NOT_COVERED_EXECUTION = '_java.notCoveredExecution';
289289

290-
export const MEATDATA_FILES_GENERATION = '_java.metadataFilesGeneration';
290+
export const METADATA_FILES_GENERATION = '_java.metadataFilesGeneration';
291291

292292
export const RUNTIME_VALIDATION_OPEN = 'java.runtimeValidation.open';
293293

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export function activate(context: ExtensionContext): Promise<ExtensionAPI> {
9090
}));
9191

9292
storagePath = context.storagePath;
93-
context.subscriptions.push(commands.registerCommand(Commands.MEATDATA_FILES_GENERATION, async () => {
93+
context.subscriptions.push(commands.registerCommand(Commands.METADATA_FILES_GENERATION, async () => {
9494
markdownPreviewProvider.show(context.asAbsolutePath(path.join('document', `_java.metadataFilesGeneration.md`)), 'Metadata Files Generation', "", context);
9595
}));
9696
context.subscriptions.push(commands.registerCommand(Commands.LEARN_MORE_ABOUT_CLEAN_UPS, async () => {

0 commit comments

Comments
 (0)