fix(curriculum): fix text in RPG (#55339)

This commit is contained in:
Gagan Bhullar
2024-06-26 14:19:22 -06:00
committed by GitHub
parent 2d48d18234
commit 097aab3291

View File

@@ -7,7 +7,7 @@ dashedName: step-41
# --description--
Now you need to modify your display text. Change the `innerText` property of the `text` to be `"You enter the store."`.
Now you need to modify your display text. Change the `innerText` property of the `text` variable to be `"You enter the store."`.
# --hints--
@@ -153,6 +153,7 @@ function goStore() {
button1.onclick = buyHealth;
button2.onclick = buyWeapon;
button3.onclick = goTown;
}
--fcc-editable-region--