Skip to content

Commit 81c2414

Browse files
committed
Merge pull request #159 from shmidtkirill/patch-2
Syntax error
2 parents 7c193dc + aad82f6 commit 81c2414

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/2-first-steps/2-external-script/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ If we'd like to add several `<script>` tags on the page and keep their execution
222222

223223
Like this:
224224
```js
225-
function addScript(src);
225+
function addScript(src){
226226
let script = document.createElement('script');
227227
script.src = src;
228228
*!*

0 commit comments

Comments
 (0)