Skip to content

Commit

Permalink
fix: added space to count lines of file
Browse files Browse the repository at this point in the history
  • Loading branch information
juniormayhe committed Feb 20, 2023
1 parent 1b9056f commit 1fe23eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ class CodeCounterController {
const lineCounter = c.getCounter(doc.uri.fsPath, doc.languageId);
if (lineCounter) {
const result = lineCounter?.count(doc.getText());
this.showStatusBar(`Code:${result.code} Comment:${result.comment} Blank:${result.blank}`);
this.showStatusBar(`Code: ${result.code} Comment: ${result.comment} Blank: ${result.blank}`);
} else {
this.showStatusBar();
}
Expand Down

0 comments on commit 1fe23eb

Please sign in to comment.