Author: larry
Date: Mon Mar 27 04:37:45 2006
New Revision: 8438

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

Log:
s/::/!!/


Modified: doc/trunk/design/syn/S06.pod
==============================================================================
--- doc/trunk/design/syn/S06.pod        (original)
+++ doc/trunk/design/syn/S06.pod        Mon Mar 27 04:37:45 2006
@@ -269,7 +269,7 @@
 
     sub infix:<(c)> ($text, $owner) { return $text but Copyright($owner) }
     method prefix:<±> (Num $x) returns Num { return +$x | -$x }
-    multi sub postfix:<!> (Int $n) { $n < 2 ?? 1 :: $n*($n-1)! }
+    multi sub postfix:<!> (Int $n) { $n < 2 ?? 1 !! $n*($n-1)! }
     macro circumfix:«<!-- -->» ($text) is parsed / .*? / { "" }
 
     my $document = $text (c) $me;

Reply via email to