Author: jimmy
Date: 2009-07-31 12:37:08 +0200 (Fri, 31 Jul 2009)
New Revision: 27823

Modified:
   docs/Perl6/Spec/S32-setting-library/Basics.pod
   docs/Perl6/Spec/S32-setting-library/Callable.pod
   docs/Perl6/Spec/S32-setting-library/Containers.pod
   docs/Perl6/Spec/S32-setting-library/IO.pod
   docs/Perl6/Spec/S32-setting-library/Rules.pod
Log:
added missing POD commands

Modified: docs/Perl6/Spec/S32-setting-library/Basics.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/Basics.pod      2009-07-31 00:08:15 UTC 
(rev 27822)
+++ docs/Perl6/Spec/S32-setting-library/Basics.pod      2009-07-31 10:37:08 UTC 
(rev 27823)
@@ -44,6 +44,8 @@
      method true() {...}
  }
 
+=over
+
 =item defined
 
   our Bool multi method defined ( $self: ) is export
@@ -96,6 +98,8 @@
 instantiate an C<Object> it would be considered defined, and thus true.
 (It is not clear that this is allowed, however.)
 
+=back
+
 =head2 Any
 
 The following are defined in the C<Any> role:

Modified: docs/Perl6/Spec/S32-setting-library/Callable.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/Callable.pod    2009-07-31 00:08:15 UTC 
(rev 27822)
+++ docs/Perl6/Spec/S32-setting-library/Callable.pod    2009-07-31 10:37:08 UTC 
(rev 27823)
@@ -90,6 +90,8 @@
       method Bool       multi() {...}
  }
 
+=over
+
 =item unwrap
 
 See L<S06/Wrapping>.
@@ -100,6 +102,8 @@
 
 See L<S06/Wrapping>.
 
+=back
+
 =head2 Sub
 
     class Sub isa Routine {...}

Modified: docs/Perl6/Spec/S32-setting-library/Containers.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/Containers.pod  2009-07-31 00:08:15 UTC 
(rev 27822)
+++ docs/Perl6/Spec/S32-setting-library/Containers.pod  2009-07-31 10:37:08 UTC 
(rev 27823)
@@ -763,6 +763,8 @@
 
 =head3 Methods
 
+=over
+
 =item decode
 
     our Str method decode($encoding = $?ENC, $nf = $?NF)
@@ -771,6 +773,8 @@
 C<utf8>, C<utf16>) the C<$encoding> parameter defaults to their intrisic
 encoding instead.
 
+=back
+
 =head3 C<Buf> Operators
 
 Two C<Buf> objects of the same bit size can be compared with the same
@@ -795,12 +799,16 @@
 
 The value of a pair is mutable; the key is not.
 
+=over
+
 =item invert
 
     our List multi method invert ( $pair: ) is export {
      $pair.value X=> $pair.key
     }
 
+=back
+
 =head2 Mapping
 
     class Mapping does Associative {...}
@@ -906,8 +914,6 @@
 
 =back
 
-
-
 =head1 Additions
 
 Please post errors and feedback to perl6-language.  If you are making

Modified: docs/Perl6/Spec/S32-setting-library/IO.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/IO.pod  2009-07-31 00:08:15 UTC (rev 
27822)
+++ docs/Perl6/Spec/S32-setting-library/IO.pod  2009-07-31 10:37:08 UTC (rev 
27823)
@@ -912,6 +912,8 @@
         ...
     }
 
+=over
+
 =item open
 
     $dir.open(
@@ -940,12 +942,16 @@
 If it succeeds it returns true, otherwise it returns C<Failure> and
 sets C<$!> (errno).
 
+=back
+
 =head2 IO::LinkNode
 
     role IO::LinkNode does IO::FSNode {
         ...
     }
 
+=over
+
 =item new
 
 Creates a new link in the filesystem.
@@ -965,6 +971,8 @@
 
 Neither of these is "C<use portable>" compatible.
 
+=back
+
 =head2 IO::Socket::INET
 
     class IO::Socket::INET does IO::Socket {
@@ -1055,6 +1063,8 @@
 
 =head2 IO::FSNode::Unix
 
+=over
+
 =item chown
 
     multi chown ($uid = -1, $gid = -1, *...@files --> Int)
@@ -1072,7 +1082,7 @@
 among the files.  On systems that don’t support C<fchown>, passing
 file handles produces a fatal error at run time.
 
-Here’s an example that looks up nonnumeric uids in the passwd
+Here's an example that looks up nonnumeric uids in the passwd
 file:
 
    $user = prompt "User: ";
@@ -1120,6 +1130,8 @@
 the stat fails, all subsequent tests on the stat buffer also evaluate
 to false.
 
+=back
+
 =head2 IO::Socket::Unix
 
     role IO::Socket::Unix does IO::Socket {

Modified: docs/Perl6/Spec/S32-setting-library/Rules.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/Rules.pod       2009-07-31 00:08:15 UTC 
(rev 27822)
+++ docs/Perl6/Spec/S32-setting-library/Rules.pod       2009-07-31 10:37:08 UTC 
(rev 27823)
@@ -55,6 +55,3 @@
 
 Please post errors and feedback to perl6-language.  If you are making
 a general laundry list, please separate messages by topic.
-
-
-

Reply via email to