From e2d01cfdc29754093dc4a5197262ac1be064678c Mon Sep 17 00:00:00 2001 From: Steven Schobert Date: Fri, 8 Sep 2023 21:39:07 -0500 Subject: [PATCH] Fix typo in prompt (#971) Fixes a small typo in the prompt displayed when running the "View Memory" command --- extension/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension/main.ts b/extension/main.ts index 9db18072..93782073 100644 --- a/extension/main.ts +++ b/extension/main.ts @@ -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);