Author: larry
Date: Tue Jan 30 18:54:32 2007
New Revision: 13554

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

Log:
Deleted stylistic notes ill-suited for a spec.


Modified: doc/trunk/design/syn/S03.pod
==============================================================================
--- doc/trunk/design/syn/S03.pod        (original)
+++ doc/trunk/design/syn/S03.pod        Tue Jan 30 18:54:32 2007
@@ -945,19 +945,6 @@
 
     my $x = hmm() ?? 1 !! 2;          # much better
 
-Some people like to write it like this:
-
-    my $x = hmm()
-            ?? 1
-            !! 2;
-
-A tabular form is also popular for cascaded conditionals:
-
-    my $result = $a ?? 1 !!
-                 $b ?? 2 !!
-                 $c ?? 3 !!
-                       4;
-
 =back
 
 =head2 Item assignment precedence

Reply via email to