summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
authorTina Müller <cpan2@tinita.de>2018-07-16 13:10:24 +0200
committerJames E Keenan <jkeenan@cpan.org>2018-07-17 15:15:28 -0400
commit5962c2f672495234bec14ab5427cba5b2ccb2e33 (patch)
tree2b9fdd1c308fc21399f6f5f5d698cd1e2b994d6c /numeric.c
parent8efc02fdaef53aef61eb0b7569d5df023752913a (diff)
downloadperl-5962c2f672495234bec14ab5427cba5b2ccb2e33.tar.gz
Fix typo: IS_NUMBER_INFINITE -> IS_NUMBER_INFINITY
For: RT # 133380 Committer: Tina Müller is now a Perl AUTHOR.
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/numeric.c b/numeric.c
index 94fdf71823..e776f7332e 100644
--- a/numeric.c
+++ b/numeric.c
@@ -565,9 +565,9 @@ Perl_grok_numeric_radix(pTHX_ const char **sp, const char *send)
Helper for C<grok_number()>, accepts various ways of spelling "infinity"
or "not a number", and returns one of the following flag combinations:
- IS_NUMBER_INFINITE
+ IS_NUMBER_INFINITY
IS_NUMBER_NAN
- IS_NUMBER_INFINITE | IS_NUMBER_NEG
+ IS_NUMBER_INFINITY | IS_NUMBER_NEG
IS_NUMBER_NAN | IS_NUMBER_NEG
0