perlhacktips: Fix verbatim line
authorFather Chrysostomos <sprout@cpan.org>
Sun, 3 Nov 2013 22:29:06 +0000 (14:29 -0800)
committerFather Chrysostomos <sprout@cpan.org>
Mon, 4 Nov 2013 00:29:36 +0000 (16:29 -0800)
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

pod/perlhacktips.pod

index 74ec78b..f9aade1 100644 (file)
@@ -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.