# New Ticket Created by  Will Coleda 
# Please include the string:  [perl #31186]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org:80/rt3/Ticket/Display.html?id=31186 >


Nothing serious, just trying to clean up a few nits in assorted POD.



Index: classes/boolean.pmc
===================================================================
RCS file: /cvs/public/parrot/classes/boolean.pmc,v
retrieving revision 1.16
diff -b -u -r1.16 boolean.pmc
--- classes/boolean.pmc 13 Jul 2004 10:10:57 -0000      1.16
+++ classes/boolean.pmc 16 Aug 2004 14:47:25 -0000
@@ -76,7 +76,7 @@
     }
 /*
 
-=item C<STRING* get_string ()
+=item C<STRING* get_string ()>
 
 Return "True" or "False" if python_mode is true.
 
Index: classes/undef.pmc
===================================================================
RCS file: /cvs/public/parrot/classes/undef.pmc,v
retrieving revision 1.7
diff -b -u -r1.7 undef.pmc
--- classes/undef.pmc   30 Jul 2004 07:08:26 -0000      1.7
+++ classes/undef.pmc   16 Aug 2004 14:47:25 -0000
@@ -82,3 +82,21 @@
   }
 
 }
+/*
+
+=back
+
+=cut
+
+*/
+
+/*
+ * Local variables:
+ * c-indentation-style: bsd
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vim: expandtab shiftwidth=4:
+*/
+
Index: ops/experimental.ops
===================================================================
RCS file: /cvs/public/parrot/ops/experimental.ops,v
retrieving revision 1.9
diff -b -u -r1.9 experimental.ops
--- ops/experimental.ops        5 Aug 2004 06:57:25 -0000       1.9
+++ ops/experimental.ops        16 Aug 2004 14:47:25 -0000
@@ -263,6 +263,8 @@
   goto NEXT();
 }
 
+=back
+
 =cut
 
 ###############################################################################
Index: ops/pmc.ops
===================================================================
RCS file: /cvs/public/parrot/ops/pmc.ops,v
retrieving revision 1.24
diff -b -u -r1.24 pmc.ops
--- ops/pmc.ops 18 Jul 2004 16:41:36 -0000      1.24
+++ ops/pmc.ops 16 Aug 2004 14:47:25 -0000
@@ -283,8 +283,6 @@
   goto NEXT();
 }
 
-=back
-
 =cut
 
 ########################################
Index: docs/pdds/pdd10_embedding.pod
===================================================================
RCS file: /cvs/public/parrot/docs/pdds/pdd10_embedding.pod,v
retrieving revision 1.1
diff -b -u -r1.1 pdd10_embedding.pod
--- docs/pdds/pdd10_embedding.pod       8 Mar 2002 23:08:31 -0000       1.1
+++ docs/pdds/pdd10_embedding.pod       16 Aug 2004 14:47:25 -0000
@@ -1 +1,5 @@
+=pod
+
 Placeholder - real PDD will appear after consultation
+
+=cut
Index: docs/pdds/pdd11_extending.pod
===================================================================
RCS file: /cvs/public/parrot/docs/pdds/pdd11_extending.pod,v
retrieving revision 1.4
diff -b -u -r1.4 pdd11_extending.pod
--- docs/pdds/pdd11_extending.pod       16 Mar 2004 22:13:31 -0000      1.4
+++ docs/pdds/pdd11_extending.pod       16 Aug 2004 14:47:26 -0000
@@ -283,7 +283,7 @@
 
 Calls a Parrot subroutine, with C<argcount> PMC parameters. This function
 sets up Parrot's registers in line with the Parrot calling conventions;
-see L<docs/pdds/pdd03_calling_conventions.pod> for more details.
+see L<pdd03_calling_conventions.pod> for more details.
 
 =item C<Parrot_call_method(interp, 
 Parrot_PMC sub, Parrot_STRING method, Parrot_Int argcount, ...)>
@@ -321,7 +321,7 @@
 
 Return the value of a string register. 
 
-=item C<C<Parrot_get_pmcreg(interp, Parrot_Int regnum)>
+=item C<Parrot_get_pmcreg(interp, Parrot_Int regnum)>
 
 Return the value of a PMC register. 
 
@@ -356,7 +356,7 @@
 
 =over 4
 
-=item C<version 1
+=item Version 1
 
 None. First version
 
@@ -366,7 +366,7 @@
 
 =over 4
 
-=item C<Version 1.0
+=item Version 1.0
 
 None. First version
 
Index: docs/pdds/pdd12_assembly.pod
===================================================================
RCS file: /cvs/public/parrot/docs/pdds/pdd12_assembly.pod,v
retrieving revision 1.1
diff -b -u -r1.1 pdd12_assembly.pod
--- docs/pdds/pdd12_assembly.pod        8 Mar 2002 23:08:31 -0000       1.1
+++ docs/pdds/pdd12_assembly.pod        16 Aug 2004 14:47:26 -0000
@@ -1 +1,5 @@
+=pod
+
 Placeholder - real PDD will appear after consultation
+
+=cut
Index: docs/pdds/pdd13_bytecode.pod
===================================================================
RCS file: /cvs/public/parrot/docs/pdds/pdd13_bytecode.pod,v
retrieving revision 1.1
diff -b -u -r1.1 pdd13_bytecode.pod
--- docs/pdds/pdd13_bytecode.pod        8 Mar 2002 23:08:31 -0000       1.1
+++ docs/pdds/pdd13_bytecode.pod        16 Aug 2004 14:47:26 -0000
@@ -1 +1,5 @@
+=pod
+
 Placeholder - real PDD will appear after consultation
+
+=cut
Index: docs/pdds/pdd16_native_call.pod
===================================================================
RCS file: /cvs/public/parrot/docs/pdds/pdd16_native_call.pod,v
retrieving revision 1.10
diff -b -u -r1.10 pdd16_native_call.pod
--- docs/pdds/pdd16_native_call.pod     9 Aug 2004 07:42:47 -0000       1.10
+++ docs/pdds/pdd16_native_call.pod     16 Aug 2004 14:47:26 -0000
@@ -251,7 +251,7 @@
 
 =head1 REFERENCES
 
-L<docs/pdds/pdd06_pasm.pod>
+L<pdd06_pasm.pod>
 
 =head1 VERSION
 
Index: runtime/parrot/library/Data/Dumper/Default.imc
===================================================================
RCS file: /cvs/public/parrot/runtime/parrot/library/Data/Dumper/Default.imc,v
retrieving revision 1.2
diff -b -u -r1.2 Default.imc
--- runtime/parrot/library/Data/Dumper/Default.imc      28 May 2004 18:42:12 -0000     
 1.2
+++ runtime/parrot/library/Data/Dumper/Default.imc      16 Aug 2004 14:47:26 -0000
@@ -16,12 +16,6 @@
 for dumping data structures. It is subclassed by C<Data::Dumper::Default>,
 which implements the methods that are finally doing the output.
 
-=head1 METHODS
-
-A Data::Dumper::Default object has the following methods:
-
-=over 4
-
 =cut
 
 .sub __library_data_dumper_default_onload @LOAD
Index: t/library/parrotlib.t
===================================================================
RCS file: /cvs/public/parrot/t/library/parrotlib.t,v
retrieving revision 1.1
diff -b -u -r1.1 parrotlib.t
--- t/library/parrotlib.t       15 Jun 2004 18:38:31 -0000      1.1
+++ t/library/parrotlib.t       16 Aug 2004 14:47:26 -0000
@@ -104,8 +104,6 @@
 
 END_OUT
 
-=back
-
 =head1 AUTHOR
 
 Bernhard Schmalhofer <[EMAIL PROTECTED]>

Reply via email to