diff --git a/language/control-structures/match.xml b/language/control-structures/match.xml index fcaeee943..d1c81906b 100644 --- a/language/control-structures/match.xml +++ b/language/control-structures/match.xml @@ -1,5 +1,5 @@ - + @@ -66,7 +66,7 @@ $output = match (true) { $age < 2 => "Bebé", $age < 13 => "Niño", $age <= 19 => "Adolescente", - $age >= 40 => "Adulto mayor", + $age >= 40 => "Adulto", $age > 19 => "Adulto joven", };