From d76cc3d06d09cc5691281497d70b52972b5cfbd0 Mon Sep 17 00:00:00 2001 From: tel0065 <77864718+tel0065@users.noreply.github.com> Date: Wed, 23 Mar 2022 17:46:44 -0500 Subject: [PATCH] fixed output type-o on getLeadingSpaces() Fixed issue with the output not displaying as intended in the getLeadingSpaces() function --- src/commands/text.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/text.ts b/src/commands/text.ts index 508c256..511220c 100755 --- a/src/commands/text.ts +++ b/src/commands/text.ts @@ -54,7 +54,7 @@ function getLeadingSpaces() { } else { let numSpaces = textLine.firstNonWhitespaceCharacterIndex; - vscode.window.showInformationMessage("Line Number " + lineNum.toString() + numSpaces.toString()) + " Leading Spaces "; + vscode.window.showInformationMessage("Line Number " + lineNum.toString() + ": " + numSpaces.toString() + " Leading Spaces "); } } else {