File: pod-syntax.patch

package info (click to toggle)
libcgi-xml-perl 0.1-15
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 136 kB
  • ctags: 18
  • sloc: perl: 74; xml: 4; makefile: 2
file content (41 lines) | stat: -rw-r--r-- 826 bytes parent folder | download | duplicates (3)
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
Description: syntax of item list
Origin: vendor
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2015-06-13
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=105205
Bug: https://rt.cpan.org/Ticket/Display.html?id=105205

--- a/XML.pm
+++ b/XML.pm
@@ -91,29 +91,21 @@
 
 =head1 METHODS
 
-=item $q = new CGI::XML
-
 =over 4
 
+=item $q = new CGI::XML
+
 creates a new instance of CGI::XML. You also have access
 to all of the methods in CGI.pm.
 
-=back
-
 =item $q->toXML([$root])
 
-=over 4
-
 where B<$root> is an optional parameter that specifies
 the root element. By default, B<toXML> will not return a root
 element.
 
-=back
-
 =item $q->toCGI($xml)
 
-=over 4
-
 where B<$xml> is the XML you would like to convert
 to CGI.pm parameters. Values in the XML will overwrite any
 existing values if they exist.