com doc/fr: Apply commit 783fbc2001b129f5f8956937e15e253969b8765c: language/operators.xml
[email protected] (George Peter Banyard) Wed, 03 Feb 2021 01:50:23 +0000
| Newsgroups | php.doc.fr |
|---|---|
| Message-ID | <[email protected]> |
Commit: ecff09364895a7454f09fe39385ec07e7aedada8 Author: George Peter Banyard <[email protected]> Wed, 3 Feb 2021 01:49:50 +0000 Parents: cac51279d230952e77ca169311241dcc834be9ac Branches: master Link: http://git.php.net/?p=doc/fr.git;a=commitdiff;h=ecff09364895a7454f09fe39385ec07e7aedada8 Log: Apply commit 783fbc2001b129f5f8956937e15e253969b8765c Add exponentiation assignment operator to corresponding table Also use proper French translation for the other mention Changed paths: M language/operators.xml Diff: diff --git a/language/operators.xml b/language/operators.xml index db3c401a8d..35cd40c24e 100644 --- a/language/operators.xml +++ b/language/operators.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <!-- $Revision$ --> -<!-- EN-Revision: 646e6eb3e3eaf0cb40127405a01ed5e3f479799f Maintainer: yannick Status: ready --> +<!-- EN-Revision: 783fbc2001b129f5f8956937e15e253969b8765c Maintainer: yannick Status: ready --> <!-- Reviewed: no --> <!-- CREDITS: DAnnebicque --> <chapter xml:id="language.operators" xmlns="http://docbook.org/ns/docbook"> @@ -438,7 +438,7 @@ x moins un est égal 3, en tout cas j'espère </row> <row> <entry>$a ** $b</entry> - <entry>Exponentielle</entry> + <entry>Exponentiation</entry> <entry>Résultat de l'élévation de <varname>$a</varname> à la puissance <varname>$b</varname>.</entry> </row> @@ -649,6 +649,11 @@ Parse error: syntax error, unexpected 'new' (T_NEW) in … <entry>$a = $a % $b</entry> <entry>Modulo</entry> </row> + <row> + <entry>$a **= $b</entry> + <entry>$a = $a ** $b</entry> + <entry>Exponentiation</entry> + </row> </tbody> </tgroup> </informaltable>