From b6fcc5ffb0af6c3dd9bdf6f1b784e6fea076a594 Mon Sep 17 00:00:00 2001 From: Federico Bond Date: Sun, 11 Dec 2016 12:11:04 -0300 Subject: Fix typos in comments --- libdevcore/JSON.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libdevcore/JSON.h') diff --git a/libdevcore/JSON.h b/libdevcore/JSON.h index 0d6e0d2e..9f7d9a03 100644 --- a/libdevcore/JSON.h +++ b/libdevcore/JSON.h @@ -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; -- cgit v1.2.3