Skip to content

Commit

Permalink
Fixed typo in const METADATA_FILES_GENERATION
Browse files Browse the repository at this point in the history
  • Loading branch information
hopehadfield authored and rgrunber committed Jun 2, 2023
1 parent 0795557 commit 71f02cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ export namespace Commands {

export const NOT_COVERED_EXECUTION = '_java.notCoveredExecution';

export const MEATDATA_FILES_GENERATION = '_java.metadataFilesGeneration';
export const METADATA_FILES_GENERATION = '_java.metadataFilesGeneration';

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

Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function activate(context: ExtensionContext): Promise<ExtensionAPI> {
}));

storagePath = context.storagePath;
context.subscriptions.push(commands.registerCommand(Commands.MEATDATA_FILES_GENERATION, async () => {
context.subscriptions.push(commands.registerCommand(Commands.METADATA_FILES_GENERATION, async () => {
markdownPreviewProvider.show(context.asAbsolutePath(path.join('document', `_java.metadataFilesGeneration.md`)), 'Metadata Files Generation', "", context);
}));
context.subscriptions.push(commands.registerCommand(Commands.LEARN_MORE_ABOUT_CLEAN_UPS, async () => {
Expand Down

0 comments on commit 71f02cc

Please sign in to comment.