summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2019-11-18 10:41:30 +0000
committerDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2019-11-18 10:43:20 +0000
commite807022fa1186988d719e1500921e0cdfe8a13cb (patch)
treeac369810c3ef4dff4c8b652c5718f2975e668893
parent8ac2356991b57f84538a2e54198c5ba6071779c6 (diff)
downloadperl-e807022fa1186988d719e1500921e0cdfe8a13cb.tar.gz
perlguts: Remove stray POD characters
- double qoutes inside C<> (not used elsewhere in this doc) - trailing ctrl-backslash
-rw-r--r--pod/perlguts.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod
index 954e6aca98..d33212206f 100644
--- a/pod/perlguts.pod
+++ b/pod/perlguts.pod
@@ -2730,7 +2730,7 @@ IV, UV, NV, or PV. Also, if the SV is a reference to some value,
either it will be dereferenced and the value printed, or information
about the type of that value and its address are displayed. The results
of printing any other type of SV are undefined and likely to lead to an
-interpreter crash. NVs are printed using a C<%g">-ish format.
+interpreter crash. NVs are printed using a C<%g>-ish format.
Note that the spaces are required around the C<SVf> in case the code is
compiled with C++, to maintain compliance with its standard.
@@ -2745,7 +2745,7 @@ You can use this to concatenate two scalars:
SV *var1 = get_sv("var1", GV_ADD);
SV *var2 = get_sv("var2", GV_ADD);
SV *var3 = newSVpvf("var1=%" SVf " and var2=%" SVf,
- SVfARG(var1), SVfARG(var2));
+ SVfARG(var1), SVfARG(var2));
=head2 Formatted Printing of Strings
@@ -2784,7 +2784,7 @@ print as in the
L<previous section|/Formatted Printing of IVs, UVs, and NVs>.
But if you're using C<PerlIO_printf()>, it's less typing and visual
-clutter to use the C<"%z"> length modifier (for I<siZe>):
+clutter to use the C<%z> length modifier (for I<siZe>):
PerlIO_printf("STRLEN is %zu\n", len);