Skip to content

Commit

Permalink
Update json_tool.h
Browse files Browse the repository at this point in the history
Fix a typo in comment.
  • Loading branch information
filipjs committed Jul 14, 2015
1 parent 81cf237 commit 770fdda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib_json/json_tool.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ static inline std::string codePointToUTF8(unsigned int cp) {
return result;
}

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

enum {
Expand Down

0 comments on commit 770fdda

Please sign in to comment.