There was an error while loading. Please reload this page.
1 parent e103cb9 commit 2dfd8b6Copy full SHA for 2dfd8b6
1 file changed
language/control-structures/match.xml
@@ -1,5 +1,5 @@
1
<?xml version="1.0" encoding="utf-8"?>
2
-<!-- EN-Revision: 17502ebe0691a84e7d0738c13e8c1061dde98de7 Maintainer: pierrick Status: ready -->
+<!-- EN-Revision: 840bdb9be79855ee4b2cc66c22cf3e88b781398a Maintainer: lacatoire Status: ready -->
3
<!-- Reviewed: yes -->
4
5
<sect1 xml:id="control-structures.match" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -66,7 +66,7 @@ $output = match (true) {
66
$age < 2 => "Bébé",
67
$age < 13 => "Enfant",
68
$age <= 19 => "Adolescent",
69
- $age >= 40 => "Adulte âgé",
+ $age >= 40 => "Adulte",
70
$age > 19 => "Jeune adulte",
71
};
72
0 commit comments