aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2016-12-11 23:38:17 +0800
committerGitHub <noreply@github.com>2016-12-11 23:38:17 +0800
commit84d4f3da025f58ac1d7b2d252532c7142da29925 (patch)
treee825110d6e7afa6194d81b796b297a31cdb19e5b
parent84443eb56022cdb236425b99e253d0b142261372 (diff)
parentb6fcc5ffb0af6c3dd9bdf6f1b784e6fea076a594 (diff)
downloaddexon-solidity-84d4f3da025f58ac1d7b2d252532c7142da29925.tar.gz
dexon-solidity-84d4f3da025f58ac1d7b2d252532c7142da29925.tar.zst
dexon-solidity-84d4f3da025f58ac1d7b2d252532c7142da29925.zip
Merge pull request #1498 from federicobond/fix-typos
Fix typos in comments
-rw-r--r--libdevcore/JSON.h4
1 files changed, 2 insertions, 2 deletions
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;