summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2013-11-03 14:29:06 -0800
committerFather Chrysostomos <sprout@cpan.org>2013-11-03 16:29:36 -0800
commitcbc13c3d0866ec08a907c47f5157a5987f558387 (patch)
treee2b54fe9f55d67bc3eaac02de05760dbb70c3214
parent71323522efb7111f6520523363cd8469fdec010c (diff)
downloadperl-cbc13c3d0866ec08a907c47f5157a5987f558387.tar.gz
perlhacktips: Fix verbatim line
Shorten this long verbatim line by removing the pod markup (which would be rendered literally), changing the indent to 4 (to match the ‘make foo.i’ further down) and removing the trailing space
-rw-r--r--pod/perlhacktips.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlhacktips.pod b/pod/perlhacktips.pod
index 74ec78b2a2..f9aade138c 100644
--- a/pod/perlhacktips.pod
+++ b/pod/perlhacktips.pod
@@ -1340,7 +1340,7 @@ C99), it is easy to forget the cast. You can force C<bool> to be a C<char>
by compiling with C<-Accflags=-DPERL_BOOL_AS_CHAR>. You may also wish to
run C<Configure> with something like
- C<-Accflags='-Wconversion -Wno-sign-conversion -Wno-shorten-64-to-32'>
+ -Accflags='-Wconversion -Wno-sign-conversion -Wno-shorten-64-to-32'
or your compiler's equivalent to make it easier to spot any unsafe truncations
that show up.