summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJefferson Farias <jefferson.farias7@gmail.com>2023-12-14 12:06:55 -0300
committerGitHub <noreply@github.com>2023-12-14 16:06:55 +0100
commit267ca9e2dcc205495ebae9734ce3aa1de17999e4 (patch)
tree5e36a4e02f368b5315bf98c058f8977b6e093513
parent52df31cb3f87fbd74ad630974974b11c1a89e30b (diff)
Fix translation problem (#4147)
-rw-r--r--pt-br/elixir-pt.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/pt-br/elixir-pt.html.markdown b/pt-br/elixir-pt.html.markdown
index 4ba78f52..abc0fcb3 100644
--- a/pt-br/elixir-pt.html.markdown
+++ b/pt-br/elixir-pt.html.markdown
@@ -98,7 +98,7 @@ linhas.
# Ranges são representados como `início..fim` (ambos inclusivos)
1..10 #=> 1..10
menor..maior = 1..10 # Pattern matching pode ser usada em ranges também
-[lower, upper] #=> [1, 10]
+[menor, maior] #=> [1, 10]
## ---------------------------
## -- Operadores