1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
From: Ansgar Burchardt <ansgar@43-1.org>
Date: Sun, 03 Jan 2010 20:33:24 +0900
Subject: Fix POD errors
--- libxml-simpleobject-perl.orig/LibXML/LibXML.pm
+++ libxml-simpleobject-perl/LibXML/LibXML.pm
@@ -147,6 +147,8 @@
=head1 USAGE
+=over
+
=item $xmlobj = new XML::SimpleObject::LibXML($parser->parse_string($XML))
@@ -192,6 +194,8 @@
This returns a hash of key/value pairs for all elements in element $xmlobj.
+=back
+
=head1 EXAMPLES
Given this XML document:
--- libxml-simpleobject-perl.orig/SimpleObject.pm
+++ libxml-simpleobject-perl/SimpleObject.pm
@@ -162,6 +162,8 @@
=head1 USAGE
+=over
+
=item $xmlobj = new XML::SimpleObject($parser->parse($XML))
@@ -211,6 +213,8 @@
This returns a hash of key/value pairs for all elements in element $xmlobj.
+=back
+
=head1 EXAMPLES
Given this XML document:
|