Merge pull request #316 from filipjs/master

Update json_tool.h

typo in a comment
This commit is contained in:
Christopher Dunn 2015-07-17 06:44:33 -05:00
commit 1c69568f8d

View File

@ -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 {