summaryrefslogtreecommitdiff
path: root/invlist_inline.h
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2022-07-10 18:39:14 +0000
committerKarl Williamson <khw@cpan.org>2022-07-10 14:12:36 -0600
commit80c22fb4d7b4c52dc6e94cfdc4b7d7cd7109bd5a (patch)
treef03fa7522ebd0d81281c2312142cda8136047b6e /invlist_inline.h
parent6c86dfe02740e38ade96aabc6018c8ebe5e7cfc2 (diff)
downloadperl-80c22fb4d7b4c52dc6e94cfdc4b7d7cd7109bd5a.tar.gz
Improve parallel structure in one inline comment
Diffstat (limited to 'invlist_inline.h')
-rw-r--r--invlist_inline.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/invlist_inline.h b/invlist_inline.h
index f3f22382eb..ebb37b6543 100644
--- a/invlist_inline.h
+++ b/invlist_inline.h
@@ -166,10 +166,11 @@ S_invlist_highest(SV* const invlist)
PERL_STATIC_INLINE UV
S_invlist_highest_range_start(SV* const invlist)
{
- /* Returns the lowest code point of the highest range in the inversion list
- * parameter. This API has an ambiguity, as it returns 0 under either the
- * lowest is actually 0, or if the list is empty. If this distinction
- * matters to you, check for emptiness before calling this function */
+ /* Returns the lowest code point of the highest range in the inversion
+ * list parameter. This API has an ambiguity: it returns 0 either when
+ * the lowest such point is actually 0 or when the list is empty. If this
+ * distinction matters to you, check for emptiness before calling this
+ * function. */
UV len = _invlist_len(invlist);
UV *array;