Skip to content

Commit b9f47f8

Browse files
authored
fix(curriculum): remove backticks around console (freeCodeCamp#63927)
1 parent 30e76f9 commit b9f47f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

curriculum/challenges/english/blocks/workshop-greeting-bot/66adcf383276814776aba3ca.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Use string concatenation to join the string `"My favorite subject is "` with the
1313

1414
Assign the result to the `favoriteSubjectSentence` variable.
1515

16-
Then, log the value of `favoriteSubjectSentence` to the `console`.
16+
Then, log the value of `favoriteSubjectSentence` to the console.
1717

1818
# --hints--
1919

@@ -41,7 +41,7 @@ You should have a `console` statement in your code.
4141
assert.lengthOf(__helpers.removeJSComments(code).match(/console\.log(.*)/g), 8);
4242
```
4343

44-
You should log the value of `favoriteSubjectSentence` to the `console`.
44+
You should log the value of `favoriteSubjectSentence` to the console.
4545

4646
```js
4747
assert.match(__helpers.removeJSComments(code), /console\.log\s*\(\s*favoriteSubjectSentence\s*\)/);

0 commit comments

Comments
 (0)