Skip to content

Commit e94e1a7

Browse files
author
Martin Valigursky
committed
lint
1 parent 9f115eb commit e94e1a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/extras/mini-stats/word-atlas.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,13 @@ class WordAtlas {
110110
let totalWidth = 0;
111111
for (let i = 0; i < word.length; i++) {
112112
const char = word[i];
113-
113+
114114
// handle spaces specially - they don't render but need width
115115
if (char === ' ') {
116116
totalWidth += 5; // fixed width for space
117117
continue;
118118
}
119-
119+
120120
const charPlacement = this.placements.get(char);
121121
if (charPlacement) {
122122
const padding = 1;

0 commit comments

Comments
 (0)