Skip to content

Commit b21da95

Browse files
[CI] Format code
1 parent c3f07f6 commit b21da95

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

exercises/concept/poetry-club-door-policy/.approaches/introduction.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export function frontDoorPassword(word) {
5151
charCode = word.charCodeAt(index);
5252
if (charCode <= 90) charCode += 32;
5353
password += String.fromCharCode(charCode);
54-
};
54+
}
5555
return password;
5656
}
5757
```
@@ -120,8 +120,8 @@ export function backDoorResponse(line) {
120120
for (let index = line.length - 1; index >= 0; index--) {
121121
if (line[index] != ' ') {
122122
return line[index];
123-
};
124-
};
123+
}
124+
}
125125
return '';
126126
}
127127
```

0 commit comments

Comments
 (0)