Skip to content

Commit 89747ad

Browse files
committed
Translate comment
1 parent f954d7a commit 89747ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

1-js/11-async/01-callbacks/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Veja a função `loadScript(src)`, que carrega um script com um dado `src`:
2020

2121
```js
2222
function loadScript(src) {
23-
// creates a <script> tag and append it to the page
24-
// this causes the script with given src to start loading and run when complete
23+
// cria uma tag <script> e a anexa à página
24+
// isso faz com que o script com o determinado src comece a carregar e seja executado quando concluído
2525
let script = document.createElement('script');
2626
script.src = src;
2727
document.head.append(script);

0 commit comments

Comments
 (0)