From 196c41e3bcf0891ced1953b607dd89aa8b45c5d6 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Thu, 6 Dec 2018 11:37:26 -0500 Subject: [PATCH] Fixed typo --- include/simdjson/jsoncharutils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/simdjson/jsoncharutils.h b/include/simdjson/jsoncharutils.h index e4d82193..a348e495 100644 --- a/include/simdjson/jsoncharutils.h +++ b/include/simdjson/jsoncharutils.h @@ -60,7 +60,7 @@ const char digittoval[256] = { return (int32_t)(*res) >= 0; }*/ -// returns a value with the highest bit set if it is not valud +// returns a value with the highest bit set if it is not valid uint32_t hex_to_u32_nocheck(const u8 *src) { u8 v1 = src[0]; u8 v2 = src[1];