Skip to content

Commit 1c69568

Browse files
committed
Merge pull request open-source-parsers#316 from filipjs/master
Update json_tool.h typo in a comment
2 parents 81cf237 + 770fdda commit 1c69568

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib_json/json_tool.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ static inline std::string codePointToUTF8(unsigned int cp) {
4343
return result;
4444
}
4545

46-
/// Returns true if ch is a control character (in range [0,32[).
46+
/// Returns true if ch is a control character (in range [0,32]).
4747
static inline bool isControlCharacter(char ch) { return ch > 0 && ch <= 0x1F; }
4848

4949
enum {

0 commit comments

Comments
 (0)