diff options
author | Fabio Arazaki <45642833+arazaki@users.noreply.github.com> | 2021-06-03 11:00:24 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-03 11:00:24 -0300 |
commit | 5b6c010be94d68336c6673347644b190ed13f40c (patch) | |
tree | ec5276c6c604a2052a752558d62649a774f33a12 /files/pt-br | |
parent | 9c11295578ec8108aa7ca22657d5422e75e056ff (diff) | |
download | translated-content-5b6c010be94d68336c6673347644b190ed13f40c.tar.gz translated-content-5b6c010be94d68336c6673347644b190ed13f40c.tar.bz2 translated-content-5b6c010be94d68336c6673347644b190ed13f40c.zip |
[pt-br] Typo errors (#1094)
Diffstat (limited to 'files/pt-br')
-rw-r--r-- | files/pt-br/web/javascript/reference/functions/arrow_functions/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/pt-br/web/javascript/reference/functions/arrow_functions/index.html b/files/pt-br/web/javascript/reference/functions/arrow_functions/index.html index 7095ca0ea2..b550d633e1 100644 --- a/files/pt-br/web/javascript/reference/functions/arrow_functions/index.html +++ b/files/pt-br/web/javascript/reference/functions/arrow_functions/index.html @@ -253,7 +253,7 @@ var func = (x, y) => { return x + y; }; <h2 id="Retornando_objetos_literais">Retornando objetos literais</h2> -<p>Tenha em mente que retornar objetos literais usando a sintaxe de corpo conciso (<em>concise body</em>) <code>params => {object:literal}</code> não funcionará como experado.</p> +<p>Tenha em mente que retornar objetos literais usando a sintaxe de corpo conciso (<em>concise body</em>) <code>params => {object:literal}</code> não funcionará como esperado.</p> <pre><code>var func = () => { foo: 1 }; // Chamar func() retornará undefined! @@ -276,7 +276,7 @@ var func = () => { foo: function() {} }; <pre><code>var func = (a, b, c) => 1; -// SyntaxError (Erro de sintaxe): experada expressão, mas obteve '=>'</code></pre> +// SyntaxError (Erro de sintaxe): esperada expressão, mas obteve '=>'</code></pre> <p>Entretanto, isto pode ser corrigido ao usar parênteses ou colocar a quebra de linha dentro dos argumentos como visto abaixo para garantir que o código permaneça bonito e leve.</p> |