$dumper->dumpValues($value1, $value2);
-Same as C< $dumper->dumpValue([$value1, $value2]); >.
+Same as C<< $dumper->dumpValue([$value1, $value2]); >>.
=item stringify
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:
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:
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):
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:
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