This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
pp.c: Nit in comment
authorKarl Williamson <public@khwilliamson.com>
Thu, 25 Apr 2013 14:41:13 +0000 (08:41 -0600)
committerKarl Williamson <public@khwilliamson.com>
Mon, 20 May 2013 17:01:49 +0000 (11:01 -0600)
pp.c

diff --git a/pp.c b/pp.c
index ed6fd5f..337c339 100644 (file)
--- a/pp.c
+++ b/pp.c
@@ -4214,7 +4214,7 @@ PP(pp_fc)
         else {
             /* For ASCII and the Latin-1 range, there's only two troublesome
              * folds, \x{DF} (\N{LATIN SMALL LETTER SHARP S}), which under full
-             * casefolding becomes 'ss', and \x{B5} (\N{MICRO SIGN}), which
+             * casefolding becomes 'ss'; and \x{B5} (\N{MICRO SIGN}), which
              * under any fold becomes \x{3BC} (\N{GREEK SMALL LETTER MU}) --
              * For the rest, the casefold is their lowercase.  */
             for (; s < send; d++, s++) {