From 2923cf7331a5828c8d8cf74ac73d7fe2fb5c1864 Mon Sep 17 00:00:00 2001 From: Diem-Trang Pham <6422507+pdtrang@users.noreply.github.com> Date: Thu, 25 Sep 2025 23:19:42 -0500 Subject: [PATCH] fix(curriculum): correct casing of JavaScript (#62369) --- .../index.md | 2 +- .../6672e579cc11472272ab23e6.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/pages/learn/full-stack-developer/lecture-working-with-the-dom-click-events-and-web-apis/index.md b/client/src/pages/learn/full-stack-developer/lecture-working-with-the-dom-click-events-and-web-apis/index.md index b8c24b7ba51..0b4be28c783 100644 --- a/client/src/pages/learn/full-stack-developer/lecture-working-with-the-dom-click-events-and-web-apis/index.md +++ b/client/src/pages/learn/full-stack-developer/lecture-working-with-the-dom-click-events-and-web-apis/index.md @@ -6,4 +6,4 @@ superBlock: full-stack-developer ## Introduction to Working with the DOM, Click Events, and Web APIs -In these lecture videos, you will learn how to work with the DOM, click events, and web APIs, using Javascript. +In these lecture videos, you will learn how to work with the DOM, click events, and web APIs, using JavaScript. diff --git a/curriculum/challenges/english/blocks/learn-introductory-javascript-by-building-a-pyramid-generator/6672e579cc11472272ab23e6.md b/curriculum/challenges/english/blocks/learn-introductory-javascript-by-building-a-pyramid-generator/6672e579cc11472272ab23e6.md index 4dca97c51f5..21105bccce6 100644 --- a/curriculum/challenges/english/blocks/learn-introductory-javascript-by-building-a-pyramid-generator/6672e579cc11472272ab23e6.md +++ b/curriculum/challenges/english/blocks/learn-introductory-javascript-by-building-a-pyramid-generator/6672e579cc11472272ab23e6.md @@ -10,7 +10,7 @@ dashedName: step-1 JavaScript is the programming language that powers the web. Unlike the HTML and CSS you have learned previously, JavaScript is most commonly used to write logic instead of markup. -In this project, you will learn the basics of Javascript and apply those concepts to building a pyramid generator. +In this project, you will learn the basics of JavaScript and apply those concepts to building a pyramid generator. A pyramid generator is a program where you can set the type of character, the count for the pyramid, and the direction of the pyramid. The program will then generate a pyramid based on those inputs.