Skip to content

Commit 2dfd8b6

Browse files
authored
[Sync EN] Change 'Adulte âgé' to 'Adulte' in match.xml (#2766)
1 parent e103cb9 commit 2dfd8b6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

language/control-structures/match.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- EN-Revision: 17502ebe0691a84e7d0738c13e8c1061dde98de7 Maintainer: pierrick Status: ready -->
2+
<!-- EN-Revision: 840bdb9be79855ee4b2cc66c22cf3e88b781398a Maintainer: lacatoire Status: ready -->
33
<!-- Reviewed: yes -->
44

55
<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) {
6666
$age < 2 => "Bébé",
6767
$age < 13 => "Enfant",
6868
$age <= 19 => "Adolescent",
69-
$age >= 40 => "Adulte âgé",
69+
$age >= 40 => "Adulte",
7070
$age > 19 => "Jeune adulte",
7171
};
7272

0 commit comments

Comments
 (0)