diff --git a/doc/header.html b/doc/header.html index 6bd2ad9..4b2a5e9 100644 --- a/doc/header.html +++ b/doc/header.html @@ -16,7 +16,7 @@ JsonCpp - JSON data format manipulation library
jsoncpp
supports comments as meta-data.
+\endcode
\section _features Features
- read and write JSON document
- attach C++ style comments to element during parsing
- rewrite JSON document preserving original comments
-Notes: Comments used to be supported in JSON but where removed for
+Notes: Comments used to be supported in JSON but were removed for
portability (C like comments are not supported in Python). Since
comments are useful in configuration/input file, this feature was
preserved.
@@ -40,7 +50,7 @@ preserved.
\section _example Code example
\code
-Json::Value root; // will contains the root value after parsing.
+Json::Value root; // will contain the root value after parsing.
Json::Reader reader;
bool parsingSuccessful = reader.parse( config_doc, root );
if ( !parsingSuccessful )