summaryrefslogtreecommitdiff
path: root/inline.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-01-25 10:37:04 -0700
committerKarl Williamson <khw@cpan.org>2018-01-29 16:33:03 -0700
commit7cf2d6c7983ca87681477f57869bf0779d8b2604 (patch)
tree365f23aad49d07e14de50b2a50a2b5a8c49f7b51 /inline.h
parent67e12c5cdf504fc3f1a9726c0d7922ea255b22af (diff)
downloadperl-7cf2d6c7983ca87681477f57869bf0779d8b2604.tar.gz
inline.h: Clarify comment
Diffstat (limited to 'inline.h')
-rw-r--r--inline.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/inline.h b/inline.h
index 6c460e584b..976d4711bc 100644
--- a/inline.h
+++ b/inline.h
@@ -544,8 +544,8 @@ S__variant_byte_number(PERL_UINTMAX_T word)
# error Unexpected byte order
# endif
- /* Here 'word' has a single bit set, the msb is of the first byte which
- * has it set. Calculate that position in the word. We can use this
+ /* Here 'word' has a single bit set: the msb of the first byte in which it
+ * is set. Calculate that position in the word. We can use this
* specialized solution: https://stackoverflow.com/a/32339674/1626653,
* assumes an 8-bit byte. (On a 32-bit machine, the larger numbers should
* just get shifted off at compile time) */