Skip to content

Commit b6c47bf

Browse files
fix(curriculum): fixed punctuation (freeCodeCamp#56942)
1 parent aa213c4 commit b6c47bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62b46e3a8d4be31be5af793d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dashedName: step-16
99

1010
We have run into a slight problem. You are trying to query your page for a button element, but your `script` tag is in the `head` of your HTML. This means your code runs before the browser has finished reading the HTML, and your `document.querySelector()` will not see the button - because the browser hasn't processed it yet.
1111

12-
To fix this, move your `script` element out of the `head` element, and place it at the end of your `body` element (just before the closing `</body>` tag.)
12+
To fix this, move your `script` element out of the `head` element, and place it at the end of your `body` element (just before the closing `</body>` tag).
1313

1414
# --hints--
1515

curriculum/challenges/english/18-project-euler/project-euler-problems-301-to-400/problem-387-harshad-numbers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dashedName: problem-387-harshad-numbers
1010

1111
A Harshad or Niven number is a number that is divisible by the sum of its digits.
1212

13-
201 is a Harshad number because it is divisible by 3 (the sum of its digits.)
13+
201 is a Harshad number because it is divisible by 3 (the sum of its digits).
1414

1515
When we truncate the last digit from 201, we get 20, which is a Harshad number.
1616

0 commit comments

Comments
 (0)