summaryrefslogtreecommitdiff
path: root/pod/perlintro.pod
diff options
context:
space:
mode:
authorAbhijit Menon-Sen <ams@wiw.org>2001-10-19 17:59:16 +0000
committerAbhijit Menon-Sen <ams@wiw.org>2001-10-19 17:59:16 +0000
commit2cd1776c1779fda5b6df8baba77742b2f09eb9e2 (patch)
tree6a592f9ced37b2c0170bdb56d595f016d9559b44 /pod/perlintro.pod
parentafa38808e08264de7bcd3b2241ab41424d64d0d4 (diff)
downloadperl-2cd1776c1779fda5b6df8baba77742b2f09eb9e2.tar.gz
C<foo I<bar>> hunks from <20011019014551.A35625@not.autrijus.org>.
(See #12499) p4raw-id: //depot/perl@12508
Diffstat (limited to 'pod/perlintro.pod')
-rw-r--r--pod/perlintro.pod10
1 files changed, 5 insertions, 5 deletions
diff --git a/pod/perlintro.pod b/pod/perlintro.pod
index 8a80ef4cee..0d96c97dcc 100644
--- a/pod/perlintro.pod
+++ b/pod/perlintro.pod
@@ -311,7 +311,7 @@ There's also a negated version of it:
...
}
-This is provided as a more readable version of C<if (! condition)>.
+This is provided as a more readable version of C<if (!I<condition>)>.
Note that the braces are required in Perl, even if you've only got one
line in the block. However, there is a clever way of making your one-line
@@ -374,7 +374,7 @@ this overview) see L<perlsyn>.
Perl comes with a wide selection of builtin functions. Some of the ones
we've already seen include C<print>, C<sort> and C<reverse>. A list of
them is given at the start of L<perlfunc> and you can easily read
-about any given function by using C<perldoc -f functionname>.
+about any given function by using C<perldoc -f I<functionname>>.
Perl operators are documented in full in L<perlop>, but here are a few
of the most common ones:
@@ -627,9 +627,9 @@ also available from CPAN.
To learn how to install modules you download from CPAN, read
L<perlmodinstall>
-To learn how to use a particular module, use C<perldoc Module::Name>.
-Typically you will want to C<use Module::Name>, which will then give you
-access to exported functions or an OO interface to the module.
+To learn how to use a particular module, use C<perldoc I<Module::Name>>.
+Typically you will want to C<use I<Module::Name>>, which will then give
+you access to exported functions or an OO interface to the module.
L<perlfaq> contains questions and answers related to many common
tasks, and often provides suggestions for good CPAN modules to use.