fixed output type-o on getLeadingSpaces()

Fixed issue with the output not displaying as intended in the getLeadingSpaces() function
This commit is contained in:
tel0065 2022-03-23 17:46:44 -05:00 committed by GitHub
parent cac31ceaa9
commit d76cc3d06d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 {