1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-07 23:37:32 +02:00

Fix translation problem (#4147)

This commit is contained in:
Jefferson Farias
2023-12-14 12:06:55 -03:00
committed by GitHub
parent 52df31cb3f
commit 267ca9e2dc

View File

@@ -98,7 +98,7 @@ linhas.
# Ranges são representados como `início..fim` (ambos inclusivos) # Ranges são representados como `início..fim` (ambos inclusivos)
1..10 #=> 1..10 1..10 #=> 1..10
menor..maior = 1..10 # Pattern matching pode ser usada em ranges também menor..maior = 1..10 # Pattern matching pode ser usada em ranges também
[lower, upper] #=> [1, 10] [menor, maior] #=> [1, 10]
## --------------------------- ## ---------------------------
## -- Operadores ## -- Operadores