Skip to content

Commit

Permalink
Use non-interpolating string delimiters (#2265)
Browse files Browse the repository at this point in the history
* Use non-interpolating string delimiters

* [CI] Format code

* Single quotes to doube quotes

* Back to single quotes

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
1 parent 50529b4 commit 4faea08
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ export function backDoorResponse(line) {
* @returns {string} the back door password
*/
export function backDoorPassword(word) {
return frontDoorPassword(word) + `, please`;
return frontDoorPassword(word) + ', please';
}

0 comments on commit 4faea08

Please sign in to comment.