Update json_tool.h
authorfilipjs <filipjs@users.noreply.github.com>
Tue, 14 Jul 2015 12:34:07 +0000 (14:34 +0200)
committerfilipjs <filipjs@users.noreply.github.com>
Tue, 14 Jul 2015 12:34:07 +0000 (14:34 +0200)
Fix a typo in comment.

src/lib_json/json_tool.h

index e6d4e92..2de0d83 100644 (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 {