aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br
diff options
context:
space:
mode:
authorFabio Arazaki <45642833+arazaki@users.noreply.github.com>2021-06-03 11:00:24 -0300
committerGitHub <noreply@github.com>2021-06-03 11:00:24 -0300
commit5b6c010be94d68336c6673347644b190ed13f40c (patch)
treeec5276c6c604a2052a752558d62649a774f33a12 /files/pt-br
parent9c11295578ec8108aa7ca22657d5422e75e056ff (diff)
downloadtranslated-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.html4
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) =&gt; { 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 =&gt; {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 =&gt; {object:literal}</code> não funcionará como esperado.</p>
<pre><code>var func = () =&gt; { foo: 1 };
// Chamar func() retornará undefined!
@@ -276,7 +276,7 @@ var func = () =&gt; { foo: function() {} };
<pre><code>var func = (a, b, c)
=&gt; 1;
-// SyntaxError (Erro de sintaxe): experada expressão, mas obteve '=&gt;'</code></pre>
+// SyntaxError (Erro de sintaxe): esperada expressão, mas obteve '=&gt;'</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>