Author: wayland
Date: 2009-02-20 02:42:25 +0100 (Fri, 20 Feb 2009)
New Revision: 25452
Modified:
docs/Perl6/Spec/S32-setting-library/Temporal.pod
Log:
Minor syntax fix
Modified: docs/Perl6/Spec/S32-setting-library/Temporal.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/Temporal.pod 2009-02-19 21:37:47 UTC
(rev 25451)
+++ docs/Perl6/Spec/S32-setting-library/Temporal.pod 2009-02-20 01:42:25 UTC
(rev 25452)
@@ -88,7 +88,7 @@
method iso8601 () returns Str
{ [ self.year, self.month, self.date ].join('-') };
- method infix:{'~'} return Str { self.iso8601 };
+ method Str { self.iso8601 };
multi method infix:{'<=>'} (Temporal::Date $self, Temporal::Date
$other) {
$self.year <=> $other.year