Subject: | POD nitpick |
The POD fails to escape > signs correctly in one place; a simple patch
is attached.
Thanks for a useful module!
- Alex
Subject: | pod.patch |
--- /usr/lib/perl5/site_perl/5.8.8/Net/Server.pod 2007-03-23 18:24:33.000000000 -0400
+++ Server.pod 2007-05-10 19:54:58.000000000 -0400
@@ -275,7 +275,7 @@
parameter passing can best be shown by the following regular
expression: ($key,$val)=~/^(\w+)\s+(\S+?)\s+$/. Passing
arguments to the run method is done as follows:
-C<Net::Server->run(key1 => 'val1')>. Passing arguments via
+C<Net::Server-E<gt>run(key1 =E<gt> 'val1')>. Passing arguments via
a prebuilt object can best be shown in the following code:
#!/usr/bin/perl -w -T