Fix typos in comments

This commit is contained in:
Federico Bond 2016-12-11 12:11:04 -03:00
parent 84443eb560
commit b6fcc5ffb0

View File

@ -27,13 +27,13 @@
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)
{
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)
{
Json::FastWriter writer;