fix(curriculum): change wording in step 26 of Pyramid Generator (#54745)

This commit is contained in:
Vicky Fernandez Busch
2024-05-13 09:21:40 +02:00
committed by GitHub
parent 3da9d0ed75
commit f3dafb36a4
@@ -7,7 +7,7 @@ dashedName: step-26
# --description--
The `let` keyword allows a variable to be reassigned. This means you could change `character` later to be a completely different value.
Declaring a variable with the `let` keyword allows it to be reassigned. This means you could change `character` later to be a completely different value.
For this project, you will not want to change these variable values. So instead, you should use `const` to declare them. `const` variables are special.