aboutsummaryrefslogtreecommitdiffstats
path: root/libdevcore
diff options
context:
space:
mode:
authorFederico Bond <federicobond@gmail.com>2016-12-11 23:11:04 +0800
committerFederico Bond <federicobond@gmail.com>2016-12-11 23:11:04 +0800
commitb6fcc5ffb0af6c3dd9bdf6f1b784e6fea076a594 (patch)
treee825110d6e7afa6194d81b796b297a31cdb19e5b /libdevcore
parent84443eb56022cdb236425b99e253d0b142261372 (diff)
downloaddexon-solidity-b6fcc5ffb0af6c3dd9bdf6f1b784e6fea076a594.tar
dexon-solidity-b6fcc5ffb0af6c3dd9bdf6f1b784e6fea076a594.tar.gz
dexon-solidity-b6fcc5ffb0af6c3dd9bdf6f1b784e6fea076a594.tar.bz2
dexon-solidity-b6fcc5ffb0af6c3dd9bdf6f1b784e6fea076a594.tar.lz
dexon-solidity-b6fcc5ffb0af6c3dd9bdf6f1b784e6fea076a594.tar.xz
dexon-solidity-b6fcc5ffb0af6c3dd9bdf6f1b784e6fea076a594.tar.zst
dexon-solidity-b6fcc5ffb0af6c3dd9bdf6f1b784e6fea076a594.zip
Fix typos in comments
Diffstat (limited to 'libdevcore')
-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;