com doc/ja: fix typo in arithmetic assignment operators: language/operators.xml
[email protected] (Yoshinari Takaoka) Wed, 06 Jan 2021 01:34:57 +0000
| Newsgroups | php.doc.ja |
|---|---|
| Message-ID | <[email protected]> |
Commit: a4faff9e0ddfa68e0373b6d6a91ca7615418b2b7 Author: Yoshinari Takaoka <[email protected]> Wed, 6 Jan 2021 10:34:57 +0900 Parents: 296fa970e82b5213643ee697484fbc4c03e336c4 Branches: master Link: http://git.php.net/?p=doc/ja.git;a=commitdiff;h=a4faff9e0ddfa68e0373b6d6a91ca7615418b2b7 Log: fix typo in arithmetic assignment operators Closes GH-313 Signed-off-by: George Peter Banyard <[email protected]> Changed paths: M language/operators.xml Diff: diff --git a/language/operators.xml b/language/operators.xml index ea4e02af61..dec116464b 100644 --- a/language/operators.xml +++ b/language/operators.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <!-- $Revision$ --> -<!-- EN-Revision: 9c098f1e964f310c423844fafb1f8fb4399e4064 Maintainer: takagi Status: ready --> +<!-- EN-Revision: 646e6eb3e3eaf0cb40127405a01ed5e3f479799f Maintainer: takagi Status: ready --> <!-- CREDITS: hirokawa,mumumu --> <chapter xml:id="language.operators" xmlns="http://docbook.org/ns/docbook"> <title>演算子</title> @@ -602,7 +602,7 @@ Parse error: syntax error, unexpected 'new' (T_NEW) in … <tbody> <row> <entry>$a += $b</entry> - <entry>$a = $a + b</entry> + <entry>$a = $a + $b</entry> <entry>加算</entry> </row> <row>