Merge pull request #1498 from federicobond/fix-typos

Fix typos in comments
This commit is contained in:
chriseth 2016-12-11 16:38:17 +01:00 committed by GitHub
commit 84d4f3da02

View File

@ -27,13 +27,13 @@
namespace dev namespace dev
{ {
/// Serialise the JSON object (@a _input) with identation /// Serialise the JSON object (@a _input) with indentation
inline std::string jsonPrettyPrint(Json::Value const& _input) inline std::string jsonPrettyPrint(Json::Value const& _input)
{ {
return Json::StyledWriter().write(_input); return Json::StyledWriter().write(_input);
} }
/// Serialise theJ SON object (@a _input) without identation /// Serialise the JSON object (@a _input) without indentation
inline std::string jsonCompactPrint(Json::Value const& _input) inline std::string jsonCompactPrint(Json::Value const& _input)
{ {
Json::FastWriter writer; Json::FastWriter writer;