[Trivial] Grammar and typo correction

Minor corrections in src\test\* .
This commit is contained in:
Lauda
2017-01-13 16:05:16 +01:00
committed by MarcoFalke
parent 02e5308c1b
commit 5c66d41b7f
6 changed files with 7 additions and 7 deletions

View File

@@ -465,7 +465,7 @@ public:
std::string JSONPrettyPrint(const UniValue& univalue)
{
std::string ret = univalue.write(4);
// Workaround for libunivalue pretty printer, which puts a space between comma's and newlines
// Workaround for libunivalue pretty printer, which puts a space between commas and newlines
size_t pos = 0;
while ((pos = ret.find(" \n", pos)) != std::string::npos) {
ret.replace(pos, 2, "\n");