Skip to content

Commit

Permalink
Fix typo in prompt (#971)
Browse files Browse the repository at this point in the history
Fixes a small typo in the prompt displayed when running the "View Memory" command
  • Loading branch information
stevenschobert authored Sep 9, 2023
1 parent f4b6ad6 commit e2d01cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ class Extension implements DebugConfigurationProvider, DebugAdapterDescriptorFac
if (address == undefined) {
let addressStr = await window.showInputBox({
title: 'Enter memory address',
prompt: 'Hex, octal or decmal '
prompt: 'Hex, octal or decimal '
});
try {
address = BigInt(addressStr);
Expand Down

0 comments on commit e2d01cf

Please # to comment.