diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-01-24 14:41:02 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-01-24 19:04:48 -0700 |
commit | f703fc96a75eab3db924e41a52531905784836de (patch) | |
tree | 3e1d1202c4d1a4efaa959f0af21a57e7babfcacd /os2 | |
parent | e58c5aaf5fae1951e56c0433da91fbbfb31b620c (diff) | |
download | perl-f703fc96a75eab3db924e41a52531905784836de.tar.gz |
Fix various minor pod issues
These were all uncovered by the new Pod::Checker, not yet in core.
Fixing these will speed up debugging the new Checker.
Diffstat (limited to 'os2')
-rw-r--r-- | os2/OS2/OS2-ExtAttr/ExtAttr.pm | 4 | ||||
-rw-r--r-- | os2/OS2/OS2-Process/Process.pm | 4 | ||||
-rw-r--r-- | os2/OS2/OS2-REXX/DLL/DLL.pm | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/os2/OS2/OS2-ExtAttr/ExtAttr.pm b/os2/OS2/OS2-ExtAttr/ExtAttr.pm index c49f1d4de5..a48a6624bd 100644 --- a/os2/OS2/OS2-ExtAttr/ExtAttr.pm +++ b/os2/OS2/OS2-ExtAttr/ExtAttr.pm @@ -3,7 +3,7 @@ package OS2::ExtAttr; use strict; use XSLoader; -our $VERSION = '0.02'; +our $VERSION = '0.03'; XSLoader::load 'OS2::ExtAttr', $VERSION; # Preloaded methods go here. @@ -122,7 +122,7 @@ OS2::ExtAttr - Perl access to extended attributes. tie %ea, 'OS2::ExtAttr', 'my.file'; print $ea{eaname}; $ea{myfield} = 'value'; - + untie %ea; =head1 DESCRIPTION diff --git a/os2/OS2/OS2-Process/Process.pm b/os2/OS2/OS2-Process/Process.pm index 21ca9aa804..baee0e6ddb 100644 --- a/os2/OS2/OS2-Process/Process.pm +++ b/os2/OS2/OS2-Process/Process.pm @@ -20,7 +20,7 @@ BEGIN { #require AutoLoader; our @ISA = qw(Exporter); - our $VERSION = "1.07"; + our $VERSION = "1.08"; XSLoader::load('OS2::Process', $VERSION); } @@ -1750,7 +1750,7 @@ specifies whether region scan should be interruptible by signals. Use class C<OS2::localClipbrd> to ensure that clipboard is closed even if the code in the block made a non-local exit. -See the L</OS2::localMorphPM, OS2::localFlashWindow, and OS2::localClipbrd classes +See the L</OS2::localMorphPM, OS2::localFlashWindow, and OS2::localClipbrd classes> =head2 Control of the PM atom tables diff --git a/os2/OS2/OS2-REXX/DLL/DLL.pm b/os2/OS2/OS2-REXX/DLL/DLL.pm index a0d3b21eb0..a7d4504d68 100644 --- a/os2/OS2/OS2-REXX/DLL/DLL.pm +++ b/os2/OS2/OS2-REXX/DLL/DLL.pm @@ -1,6 +1,6 @@ package OS2::DLL; -our $VERSION = '1.04'; +our $VERSION = '1.05'; use Carp; use XSLoader; @@ -152,7 +152,7 @@ See documentation of L<OS2::REXX> module if you need the variable pool. =head1 DESCRIPTION -=head2 L<Create a DLL handle> +=head2 Create a DLL handle $dll = OS2::DLL->module( NAME [, WHERE] ); |