summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorSamanta Navarro <ferivoz@riseup.net>2020-10-03 12:39:08 +0000
committerJames E Keenan <jkeenan@cpan.org>2020-10-03 10:40:40 -0400
commitf1460a6600d0790c237adf97bee973eae35630bf (patch)
treea43dc647d0280e8df3fc08729e7b48ed7d6a7182 /handy.h
parent0df722d69378fb3b3df5c8d7746122138fcdc5a9 (diff)
downloadperl-f1460a6600d0790c237adf97bee973eae35630bf.tar.gz
Fix typos
For: https://github.com/Perl/perl5/pull/18201 Committer: Samanta Navarro is now a Perl author. To keep 'make test_porting' happy: Increment $VERSION in several files. Regenerate uconfig.h via './perl -Ilib regen/uconfig_h.pl'.
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/handy.h b/handy.h
index 59ffba552a..76664638bf 100644
--- a/handy.h
+++ b/handy.h
@@ -834,7 +834,7 @@ the variants.
=cut
-Here and below, we add the protoypes of these macros for downstream programs
+Here and below, we add the prototypes of these macros for downstream programs
that would be interested in them, such as Devel::PPPort
=for apidoc Am|bool|isALPHANUMERIC|UV ch
@@ -2408,7 +2408,7 @@ typedef U32 line_t;
#define OCTAL_VALUE(c) (__ASSERT_(isOCTAL(c)) (7 & (c)))
/* Efficiently returns a boolean as to if two native characters are equivalent
- * case-insenstively. At least one of the characters must be one of [A-Za-z];
+ * case-insensitively. At least one of the characters must be one of [A-Za-z];
* the ALPHA in the name is to remind you of that. This is asserted() in
* DEBUGGING builds. Because [A-Za-z] are invariant under UTF-8, this macro
* works (on valid input) for both non- and UTF-8-encoded bytes.