com php-langspec: Remove =& from list of operators : spec/09-lexical-structure.md spec/19-grammar .md

[email protected] (Nikita Popov) Mon, 11 Jul 2016 18:47:45 +0000
Newsgroups php.standards.cvs
Message-ID <[email protected]>
Commit:    854b2d1d01e5c3d3feec16eebf94f5481611a875
Author:    Nikita Popov <[email protected]>         Mon, 11 Jul 2016 20:47:45 +0200
Parents:   f57050faed1a0ce39fb0c662e9e9fc40a277e3f1
Branches:  master

Link:       http://git.php.net/?p=php-langspec.git;a=commitdiff;h=854b2d1d01e5c3d3feec16eebf94f5481611a875

Log:
Remove =& from list of operators

=& is actually = followed by &.

Changed paths:
  M  spec/09-lexical-structure.md
  M  spec/19-grammar.md


Diff:
diff --git a/spec/09-lexical-structure.md b/spec/09-lexical-structure.md
index d506d43..25f9543 100644
--- a/spec/09-lexical-structure.md
+++ b/spec/09-lexical-structure.md
@@ -864,7 +864,7 @@ echo ">$s<\n\n";
     [   ]    (   )   {    }   .   ->   ++   --   **   *   +   -   ~   !
     $   /   %   &lt;&lt;    &gt;&gt;   &lt;   &gt;   &lt;=   &gt;=   ==   ===   !=   !==   ^   |
     &   &&   ||   ?   :   ;   =   **=   *=   /=   %=   +=   -=   .=   &lt;&lt;=
-    &gt;&gt;=   &=   ^=   |=   =&   ,   ??   &lt;=&gt;   ...
+    &gt;&gt;=   &=   ^=   |=   ,   ??   &lt;=&gt;   ...
 </pre>
 
 **Semantics**
diff --git a/spec/19-grammar.md b/spec/19-grammar.md
index f58f716..2e3682f 100644
--- a/spec/19-grammar.md
+++ b/spec/19-grammar.md
@@ -319,7 +319,7 @@ The grammar notation is described in [Grammars section](09-lexical-structure.md#
     [   ]    (   )   {    }   .   ->   ++   --   **   *   +   -   ~   !
     $   /   %   &lt;&lt;    &gt;&gt;   &lt;   &gt;   &lt;=   &gt;=   ==   ===   !=   !==   ^   |
     &   &&   ||   ?   :   ;   =   **=   *=   /=   %=   +=   -=   .=   &lt;&lt;=
-    &gt;&gt;=   &=   ^=   |=   =&   ,   ??   &lt;=&gt;   ...
+    &gt;&gt;=   &=   ^=   |=   ,   ??   &lt;=&gt;   ...
 </pre>
 
 ##Syntactic Grammar