From e807022fa1186988d719e1500921e0cdfe8a13cb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Dagfinn=20Ilmari=20Manns=C3=A5ker?= Date: Mon, 18 Nov 2019 10:41:30 +0000 Subject: [PATCH] perlguts: Remove stray POD characters - double qoutes inside C<> (not used elsewhere in this doc) - trailing ctrl-backslash --- pod/perlguts.pod | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 954e6ac..d332122 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 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. But if you're using C, it's less typing and visual -clutter to use the C<"%z"> length modifier (for I): +clutter to use the C<%z> length modifier (for I): PerlIO_printf("STRLEN is %zu\n", len); -- 1.8.3.1