Author: larry
Date: Sun Apr 30 18:55:42 2006
New Revision: 9048

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

Log:
Couple more long dots.


Modified: doc/trunk/design/syn/S02.pod
==============================================================================
--- doc/trunk/design/syn/S02.pod        (original)
+++ doc/trunk/design/syn/S02.pod        Sun Apr 30 18:55:42 2006
@@ -255,7 +255,7 @@
 
 Use some variant of
 
-    foo.
+    foo\
     .method
 
 if you mean the postfix method call.
@@ -1606,7 +1606,7 @@
 
     foo.bar            # foo().bar     -- postfix prevents args
     foo .bar           # foo($_.bar)   -- no postfix starts with whitespace
-    foo. .bar          # foo().bar     -- long dot, so postfix
+    foo\ .bar          # foo().bar     -- long dot, so postfix
     foo++              # foo()++       -- postfix
     foo 1,2,3          # foo(1,2,3)    -- args always expected after listop
     foo + 1            # foo(+1)       -- term always expected after listop

Reply via email to