Skip to content

Commit 962a834

Browse files
authored
Moved semicolon outside of backticks
If a student tried to copy and paste the code block, they would have a syntax error so I just moved the semicolon outside the backticks.
1 parent 91d4acd commit 962a834

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ expression.
342342
```js
343343
function outer(greeting, msg="It's a fine day to learn") {
344344
return function(name, lang="Python") {
345-
return `${greeting}, ${name}! ${msg} ${lang};`
345+
return `${greeting}, ${name}! ${msg} ${lang}`;
346346
}
347347
}
348348

0 commit comments

Comments
 (0)