Author: moritz
Date: 2010-08-10 14:55:57 +0200 (Tue, 10 Aug 2010)
New Revision: 31939

Modified:
   docs/Perl6/Spec/S32-setting-library/IO.pod
Log:
[S32::IO] update to new type names, remove some thinkos

Modified: docs/Perl6/Spec/S32-setting-library/IO.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/IO.pod  2010-08-10 11:50:30 UTC (rev 
31938)
+++ docs/Perl6/Spec/S32-setting-library/IO.pod  2010-08-10 12:55:57 UTC (rev 
31939)
@@ -712,7 +712,7 @@
         has Str $.Encoding;
         has Buf $.Binary;
         has IO::ACL @.ACLs;
-        has Hash of %.times;
+        has %.times;
     ...
     }
 
@@ -723,9 +723,9 @@
 all are checked before being pushed onto the array.  Note that @.Elements
 can not be accessed unless $.Encoding is defined.  
 
-The C<%times> has keys that can be e.g. C<ctime>, C<Modification>, and 
+The C<%.times> has keys that can be e.g. C<ctime>, C<Modification>, and 
 C<Access> (and maybe others on other operating systems), and the values are 
-all C<Temporal::Instant> objects.
+all C<Instant> objects.
 
 When a Path is used as a Str, it allows some operations, so that it can 
 be concatenated easily with other strings.  When used as an Array, it 
@@ -743,7 +743,7 @@
 This is called automatically on object creation.
 
     multi method new(
-        Str|Buf :$Path,
+        Stringy :$Path,
         Str :@PathElements,
         Str :$Encoding,
 

Reply via email to