diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/DynaLoader/DynaLoader.pm | 4 | ||||
-rw-r--r-- | ext/FileHandle/FileHandle.pm | 14 | ||||
-rw-r--r-- | ext/Opcode/Safe.pm | 8 | ||||
-rw-r--r-- | ext/Socket/Socket.pm | 4 |
4 files changed, 15 insertions, 15 deletions
diff --git a/ext/DynaLoader/DynaLoader.pm b/ext/DynaLoader/DynaLoader.pm index 282d364372..b634aef051 100644 --- a/ext/DynaLoader/DynaLoader.pm +++ b/ext/DynaLoader/DynaLoader.pm @@ -273,7 +273,7 @@ sub dl_expandspec { DynaLoader - Dynamically load C libraries into Perl code -dl_error(), dl_findfile(), dl_expandspec(), dl_load_file(), dl_find_symbol(), dl_undef_symbols(), dl_install_xsub(), boostrap() - routines used by DynaLoader modules +dl_error(), dl_findfile(), dl_expandspec(), dl_load_file(), dl_find_symbol(), dl_undef_symbols(), dl_install_xsub(), bootstrap() - routines used by DynaLoader modules =head1 SYNOPSIS @@ -523,7 +523,7 @@ the function if required by die(), caller() or the debugger. If $filename is not defined then "DynaLoader" will be used. -=item boostrap() +=item bootstrap() Syntax: diff --git a/ext/FileHandle/FileHandle.pm b/ext/FileHandle/FileHandle.pm index 1c030ecd34..d479dae08c 100644 --- a/ext/FileHandle/FileHandle.pm +++ b/ext/FileHandle/FileHandle.pm @@ -60,7 +60,7 @@ parameters, the first parameter is a filename that may include whitespace or other special characters, and the second parameter is the open mode, optionally followed by a file permission value. -If C<FileHandle::open> receives a Perl mode string (">", "+<", etc.) +If C<FileHandle::open> receives a Perl mode string ("E<gt>", "+E<lt>", etc.) or a POSIX fopen() mode string ("w", "r+", etc.), it uses the basic Perl C<open> operator. @@ -122,23 +122,23 @@ Furthermore, for doing normal I/O you might need these: =over -=item $fh->print +=item $fh-E<gt>print See L<perlfunc/print>. -=item $fh->printf +=item $fh-E<gt>printf See L<perlfunc/printf>. -=item $fh->getline +=item $fh-E<gt>getline -This works like <$fh> described in L<perlop/"I/O Operators"> +This works like E<lt>$fhE<gt> described in L<perlop/"I/O Operators"> except that it's more readable and can be safely called in an array context but still returns just one line. -=item $fh->getlines +=item $fh-E<gt>getlines -This works like <$fh> when called in an array context to +This works like E<lt>$fhE<gt> when called in an array context to read all the remaining lines in a file, except that it's more readable. It will also croak() if accidentally called in a scalar context. diff --git a/ext/Opcode/Safe.pm b/ext/Opcode/Safe.pm index f15dbd55e8..6007b97311 100644 --- a/ext/Opcode/Safe.pm +++ b/ext/Opcode/Safe.pm @@ -287,8 +287,8 @@ compilation to fail with an error. The code will not be executed. The default operator mask for a newly created compartment is the ':default' optag. -It is important that you read the L<Opcode(3)> module documentation -for more information. Especially for details definitions of opnames, +It is important that you read the Opcode(3) module documentation +for more information, especially for detailed definitions of opnames, optags and opsets. Since it is only at the compilation stage that the operator mask @@ -454,7 +454,7 @@ problem. Consider a function foo() in package pkg compiled outside a compartment but shared with it. Assume the compartment has a root package called -'Root'. If foo() contains an eval statement like eval '$baz = 1' then, +'Root'. If foo() contains an eval statement like eval '$foo = 1' then, normally, $pkg::foo will be set to 1. If foo() is called from the compartment (by whatever means) then instead of setting $pkg::foo, the eval will actually set $Root::pkg::foo. @@ -549,7 +549,7 @@ Originally designed and implemented by Malcolm Beattie, mbeattie@sable.ox.ac.uk. Reworked to use the Opcode module and other changes added by Tim Bunce -<Tim.Bunce@ig.co.uk>. +E<lt>F<Tim.Bunce@ig.co.uk>E<gt>. =cut diff --git a/ext/Socket/Socket.pm b/ext/Socket/Socket.pm index bae8a3759e..9872d03526 100644 --- a/ext/Socket/Socket.pm +++ b/ext/Socket/Socket.pm @@ -115,10 +115,10 @@ Will croak if the structure does not have AF_INET in the right place. =item sockaddr_un SOCKADDR_UN In an array context, unpacks its SOCKADDR_UN argument and returns an array -consisting of (PATHNAME). In a scalar context, packs its PATHANE +consisting of (PATHNAME). In a scalar context, packs its PATHNAME arguments as a SOCKADDR_UN and returns it. If this is confusing, use pack_sockaddr_un() and unpack_sockaddr_un() explicitly. -These are only supported if your system has <sys/un.h>. +These are only supported if your system has E<lt>F<sys/un.h>E<gt>. =item pack_sockaddr_un PATH |