aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
Diffstat (limited to 'files')
-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('')