diff options
author | Frank Wiegand <frank.wiegand@gmail.com> | 2009-11-19 12:34:20 +0100 |
---|---|---|
committer | Abigail <abigail@abigail.be> | 2009-11-19 14:30:37 +0100 |
commit | d5213412bf7e51630c57470e49cc6b127a508ed6 (patch) | |
tree | c70598e4d6d0831f3d739dae7e96abc842ea9578 | |
parent | 08fc25adb28b667408639f0458cda3d8f55bac70 (diff) | |
download | perl-d5213412bf7e51630c57470e49cc6b127a508ed6.tar.gz |
Fix POD: C<...->...> => C<< ...-> ... >>
Signed-off-by: Abigail <abigail@abigail.be>
-rw-r--r-- | lib/Dumpvalue.pm | 2 | ||||
-rw-r--r-- | lib/version/Internals.pod | 2 | ||||
-rw-r--r-- | os2/OS2/OS2-Process/Process.pm | 2 | ||||
-rw-r--r-- | os2/OS2/OS2-REXX/DLL/DLL.pm | 2 | ||||
-rw-r--r-- | pod/perlreapi.pod | 2 | ||||
-rw-r--r-- | pod/perlvms.pod | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/lib/Dumpvalue.pm b/lib/Dumpvalue.pm index 88e1493d3d..af16b1dd08 100644 --- a/lib/Dumpvalue.pm +++ b/lib/Dumpvalue.pm @@ -585,7 +585,7 @@ Prints a dump to the currently selected filehandle. $dumper->dumpValues($value1, $value2); -Same as C< $dumper->dumpValue([$value1, $value2]); >. +Same as C<< $dumper->dumpValue([$value1, $value2]); >>. =item stringify diff --git a/lib/version/Internals.pod b/lib/version/Internals.pod index 42dde75f64..597b46555e 100644 --- a/lib/version/Internals.pod +++ b/lib/version/Internals.pod @@ -222,7 +222,7 @@ For example: IMPORTANT NOTE: This may mean that code which searches for a specific string (to determine whether a given module is available) may need to be changed. It is always better to use the built-in comparison implicit in -C<use> or C<require>, rather than manually poking at C<class->VERSION> +C<use> or C<require>, rather than manually poking at C<< class->VERSION >> and then doing a comparison yourself. The replacement UNIVERSAL::VERSION, when used as a function, like this: diff --git a/os2/OS2/OS2-Process/Process.pm b/os2/OS2/OS2-Process/Process.pm index 37bb3f0602..494bd69bb8 100644 --- a/os2/OS2/OS2-Process/Process.pm +++ b/os2/OS2/OS2-Process/Process.pm @@ -1294,7 +1294,7 @@ is governed by $flags. Same as C<WindowPos_set>, but takes the position from keys C<fl width height x y behind hwnd> of the hash referenced by $hash. If $hwnd is explicitly -specified, it overrides C<$hash->{hwnd}>. If $hash->{flags} is not specified, +specified, it overrides C<< $hash->{hwnd} >>. If $hash->{flags} is not specified, it is calculated basing on the existing keys of $hash. Requires (morphing to) PM. Example: diff --git a/os2/OS2/OS2-REXX/DLL/DLL.pm b/os2/OS2/OS2-REXX/DLL/DLL.pm index 023c20a0bd..a0d3b21eb0 100644 --- a/os2/OS2/OS2-REXX/DLL/DLL.pm +++ b/os2/OS2/OS2-REXX/DLL/DLL.pm @@ -185,7 +185,7 @@ compatibility). Returns true if all functions are available. As a side effect, creates a REXX wrapper with the specified name in the package constructed by the name -of the DLL so that the next call to C<$dll->NAME()> will pick up the cached +of the DLL so that the next call to C<< $dll->NAME() >> will pick up the cached method. =head2 Create a Perl wrapper (optional): diff --git a/pod/perlreapi.pod b/pod/perlreapi.pod index 03996fd51e..d1d947b8a7 100644 --- a/pod/perlreapi.pod +++ b/pod/perlreapi.pod @@ -410,7 +410,7 @@ name for identification regardless of whether they implement methods on the object. The package this method returns should also have the internal -C<Regexp> package in its C<@ISA>. C<qr//->isa("Regexp")> should always +C<Regexp> package in its C<@ISA>. C<< qr//->isa("Regexp") >> should always be true regardless of what engine is being used. Example implementation might be: diff --git a/pod/perlvms.pod b/pod/perlvms.pod index d7ed2bca33..b25a2d7cec 100644 --- a/pod/perlvms.pod +++ b/pod/perlvms.pod @@ -274,7 +274,7 @@ OpenVMS Alpha v7.3-1 and later and all version of OpenVMS I64 support case sensitivity as a process setting (see C<SET PROCESS /CASE_LOOKUP=SENSITIVE>). Perl does not currently suppport case sensitivity on VMS, but it may in the future, so Perl programs should -use the C<File::Spec->case_tolerant> method to determine the state, and +use the C<< File::Spec->case_tolerant >> method to determine the state, and not the C<$^O> variable. =head2 Symbolic Links |