Author: masak
Date: 2010-03-03 15:16:22 +0100 (Wed, 03 Mar 2010)
New Revision: 29930
Modified:
docs/Perl6/Spec/S03-operators.pod
Log:
[S03] typo, discovered by particle++
Modified: docs/Perl6/Spec/S03-operators.pod
===================================================================
--- docs/Perl6/Spec/S03-operators.pod 2010-03-03 07:37:31 UTC (rev 29929)
+++ docs/Perl6/Spec/S03-operators.pod 2010-03-03 14:16:22 UTC (rev 29930)
@@ -2617,7 +2617,7 @@
when all(:r,:w,:x)
The pair forms are useful only for boolean tests because the method's
-value is evaluated as a boolen, so the
+value is evaluated as a Bool, so the
method form must be used for any numeric-based tests:
if stat($filename).s > 1024 {...}