mirror of
https://github.com/We-Dont-Byte/Mind_Reader.git
synced 2024-11-15 03:35:59 +00:00
fixed output type-o on getLeadingSpaces()
Fixed issue with the output not displaying as intended in the getLeadingSpaces() function
This commit is contained in:
parent
cac31ceaa9
commit
d76cc3d06d
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user