From 496d427958957f37d5120b7163dba843fa463494 Mon Sep 17 00:00:00 2001 From: Vaibhav-Ace <99183587+vaibhav-ace@users.noreply.github.com> Date: Thu, 23 May 2024 18:47:03 +0930 Subject: [PATCH] fix(curriculum): updated description of step 1 of pyramid project (#54937) --- .../660ee6e3a242da6bd579de69.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ee6e3a242da6bd579de69.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ee6e3a242da6bd579de69.md index cd3f3d05565..ac72cff5f7a 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ee6e3a242da6bd579de69.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660ee6e3a242da6bd579de69.md @@ -19,7 +19,7 @@ let hello; Variable naming follows specific rules: names can include letters, numbers, dollar signs, and underscores, but cannot contain spaces and must not begin with a number. -Declare a `character` variable in your code. +Use the `let` keyword to declare a variable called `character`. _Note_: It is common practice to end statements in JavaScript with a semicolon. `;`