summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2017-11-09 18:46:17 -0700
committerKarl Williamson <khw@cpan.org>2017-11-09 18:51:59 -0700
commitc6fbd3534700ea217d0e7553adb13aaaf116c6a6 (patch)
tree856374441ff109b8a919339f6ae93752dff508a0 /sv.c
parentc656fadc5045091645f773ff71cfe0039be5ddaf (diff)
downloadperl-c6fbd3534700ea217d0e7553adb13aaaf116c6a6.tar.gz
sv.c: Fix typo in comment
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index 225e5c855a..c1a33fb0a0 100644
--- a/sv.c
+++ b/sv.c
@@ -11921,7 +11921,7 @@ Perl_sv_vcatpvfn_flags(pTHX_ SV *const sv, const char *const pat, const STRLEN p
bool has_utf8 = DO_UTF8(sv); /* has the result utf8? */
const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
/* Times 4: a decimal digit takes more than 3 binary digits.
- * NV_DIG: mantissa takes than many decimal digits.
+ * NV_DIG: mantissa takes that many decimal digits.
* Plus 32: Playing safe. */
char ebuf[IV_DIG * 4 + NV_DIG + 32];
bool no_redundant_warning = FALSE; /* did we use any explicit format parameter index? */