Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilo Yip <miloyip@gmail.com>2016-04-19 11:22:20 +0300
committerMilo Yip <miloyip@gmail.com>2016-04-19 11:22:24 +0300
commit0fe08c222fc7170f67be5a079921e2d70efbcc1c (patch)
tree47768675b779f17110a1214b11640b8cdf73a209
parent8821797f015281ced52f8daa86e594a54a3a4976 (diff)
Fix english error message gramma
Fix #606
-rw-r--r--include/rapidjson/error/en.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rapidjson/error/en.h b/include/rapidjson/error/en.h
index c2315fda..2db838bf 100644
--- a/include/rapidjson/error/en.h
+++ b/include/rapidjson/error/en.h
@@ -38,7 +38,7 @@ inline const RAPIDJSON_ERROR_CHARTYPE* GetParseError_En(ParseErrorCode parseErro
case kParseErrorNone: return RAPIDJSON_ERROR_STRING("No error.");
case kParseErrorDocumentEmpty: return RAPIDJSON_ERROR_STRING("The document is empty.");
- case kParseErrorDocumentRootNotSingular: return RAPIDJSON_ERROR_STRING("The document root must not follow by other values.");
+ case kParseErrorDocumentRootNotSingular: return RAPIDJSON_ERROR_STRING("The document root must not be followed by other values.");
case kParseErrorValueInvalid: return RAPIDJSON_ERROR_STRING("Invalid value.");