summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Bruhat (BooK) <book@cpan.org>2015-05-05 22:22:48 +0200
committerAristotle Pagaltzis <pagaltzis@gmx.de>2015-05-10 01:40:44 +0200
commitb1fc79bc3a6f2a33f65f540b7bc05288fced5eae (patch)
tree59955951861ccc75a572ac5f0f4dc31f1fa2f42b
parent2dcf63953dd1d0578e22a4f2764bc8e4b654e555 (diff)
downloadperl-b1fc79bc3a6f2a33f65f540b7bc05288fced5eae.tar.gz
perlperf: fix some apostrophes and add a C<>
-rw-r--r--pod/perlperf.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlperf.pod b/pod/perlperf.pod
index 007a02bc87..ad9d493490 100644
--- a/pod/perlperf.pod
+++ b/pod/perlperf.pod
@@ -82,7 +82,7 @@ key into a consistent string can be an efficient way to build a single string
to compare, instead of using multiple sort keys, which makes it possible to use
the standard, written in C<c> and fast, perl C<sort()> function on the output,
and is the basis of the C<GRT> (Guttman Rossler Transform). Some string
-combinations can slow the C<GRT> down, by just being too plain complex for it's
+combinations can slow the C<GRT> down, by just being too plain complex for its
own good.
For applications using database backends, the standard C<DBIx> namespace has
@@ -952,7 +952,7 @@ the first program run, this is where the Unix system C<cksum> utility comes in.
BTW. Beware too of pressure from managers who see you speed a program up by 50%
of the runtime once, only to get a request one month later to do the same again
-(true story) - you'll just have to point out your only human, even if you are a
+(true story) - you'll just have to point out you're only human, even if you are a
Perl programmer, and you'll see what you can do...
=head1 LOGGING
@@ -971,7 +971,7 @@ The problem is that this code will always be parsed and executed, even when the
debug level set in the logging configuration file is zero. Once the debug()
subroutine has been entered, and the internal C<$debug> variable confirmed to
be zero, for example, the message which has been sent in will be discarded and
-the program will continue. In the example given though, the \%INC hash will
+the program will continue. In the example given though, the C<\%INC> hash will
already have been dumped, and the message string constructed, all of which work
could be bypassed by a debug variable at the statement level, like this: