diff options
author | Jefferson Farias <jefferson.farias7@gmail.com> | 2023-12-14 12:06:55 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 16:06:55 +0100 |
commit | 267ca9e2dcc205495ebae9734ce3aa1de17999e4 (patch) | |
tree | 5e36a4e02f368b5315bf98c058f8977b6e093513 /pt-br/elixir-pt.html.markdown | |
parent | 52df31cb3f87fbd74ad630974974b11c1a89e30b (diff) |
Fix translation problem (#4147)
Diffstat (limited to 'pt-br/elixir-pt.html.markdown')
-rw-r--r-- | pt-br/elixir-pt.html.markdown | 2 |
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 |