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.
This commit is contained in:
Nemanja Lekic
2022-10-17 17:44:36 +02:00
committed by GitHub
parent 94df22a592
commit eef52dcc42

View File

@@ -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--