aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br
diff options
context:
space:
mode:
authorMarcelo T. Cortes <marceloteixeiracortes@gmail.com>2021-07-31 20:11:53 -0300
committerGitHub <noreply@github.com>2021-07-31 20:11:53 -0300
commitc57404698a76f159e63c19bc8f42a3d4503d672d (patch)
tree122d09d450d0b81363793e41b373477966100133 /files/pt-br
parenta50431ec62070e2080422cc595163e074365e72c (diff)
downloadtranslated-content-c57404698a76f159e63c19bc8f42a3d4503d672d.tar.gz
translated-content-c57404698a76f159e63c19bc8f42a3d4503d672d.tar.bz2
translated-content-c57404698a76f159e63c19bc8f42a3d4503d672d.zip
Update index.html (#1825)
Typo
Diffstat (limited to 'files/pt-br')
-rw-r--r--files/pt-br/web/javascript/reference/global_objects/string/split/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/pt-br/web/javascript/reference/global_objects/string/split/index.html b/files/pt-br/web/javascript/reference/global_objects/string/split/index.html
index 80b42f28e0..c6a6f817ac 100644
--- a/files/pt-br/web/javascript/reference/global_objects/string/split/index.html
+++ b/files/pt-br/web/javascript/reference/global_objects/string/split/index.html
@@ -166,7 +166,7 @@ console.log(splits);
<h3 id="Revertendo_uma_String_usando_split">Revertendo uma String usando <code>split()</code></h3>
<div class="blockIndicator warning">
-<p>Esta não é a mlehor maneira de reverter uma string:</p>
+<p>Esta não é a melhor maneira de reverter uma string:</p>
<pre class="brush: js example-bad notranslate">const str = 'asdfghjkl'
const strReverse = str.split('').reverse().join('')