From eef52dcc42a773dc99102d671c285b66320dea88 Mon Sep 17 00:00:00 2001 From: Nemanja Lekic <34193350+WizardLemon@users.noreply.github.com> Date: Mon, 17 Oct 2022 17:44:36 +0200 Subject: [PATCH] fix(curriculum): change `if` to if to help translation (#48100) fix(curriculum): change `if` to if By removing the code tags the implication of the sentence stays the same but it will make translating it easier. --- .../62aa2aec2f09d454253aad6c.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62aa2aec2f09d454253aad6c.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62aa2aec2f09d454253aad6c.md index 5f48991b690..17491c06783 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62aa2aec2f09d454253aad6c.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62aa2aec2f09d454253aad6c.md @@ -7,7 +7,7 @@ dashedName: step-174 # --description-- -Since you subtracted health from the player, you need to check `if` the player's `health` is less than or equal to `0`. If it is, call the `lose` function. +Since you subtracted health from the player, you need to check if the player's `health` is less than or equal to `0`. If it is, call the `lose` function. # --hints--