Skip to content

Commit ee252b9

Browse files
committed
[libc][NFC] Fix typo
1 parent f616c3e commit ee252b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/__support/str_to_integer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ LIBC_INLINE bool is_hex_start(const char *__restrict src) {
4949
// base.
5050
LIBC_INLINE int infer_base(const char *__restrict *__restrict src) {
5151
// A hexadecimal number is defined as "the prefix 0x or 0X followed by a
52-
// sequence of the deimal digits and the letters a (or A) through f (or F)
52+
// sequence of the decimal digits and the letters a (or A) through f (or F)
5353
// with values 10 through 15 respectively." (C standard 6.4.4.1)
5454
if (is_hex_start(*src)) {
5555
(*src) += 2;

0 commit comments

Comments
 (0)