Author: autrijus
Date: Tue May  2 05:49:59 2006
New Revision: 9099

Modified:
   doc/trunk/design/syn/S03.pod

Log:
* S03: Minor typographical correction, changing the
  "===>" operator-lookalike to a more conventional
  comment.  Reported by lichtkind++

Modified: doc/trunk/design/syn/S03.pod
==============================================================================
--- doc/trunk/design/syn/S03.pod        (original)
+++ doc/trunk/design/syn/S03.pod        Tue May  2 05:49:59 2006
@@ -376,9 +376,9 @@
 defines both the C<[foo]> reduce operator and the C<foo> infix operator.
 Where appropriate, use of the infix form may be optimized like this:
 
-    $a foo $b           ===>    [foo] $a, $b
-    $a foo $b foo $c    ===>    [foo] $a, $b, $c
-    ...                         ...
+    # Original          # Optimized
+    $a foo $b           # [foo] $a, $b
+    $a foo $b foo $c    # [foo] $a, $b, $c
 
 If the reduction operator is defined separately from the infix operator,
 it must associate the same way as the operator used:

Reply via email to