diff options
author | Lauda <lauda.m@protonmail.ch> | 2017-01-13 16:05:16 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2017-01-22 13:18:51 +0100 |
commit | 5c66d41b7ffe8557ce5036613c9854d2f1dc3c37 (patch) | |
tree | 665a4171ec4582a2d4ba91989a26ab5dd2dc34bf /src/test/script_tests.cpp | |
parent | 02e5308c1b9f3771bbe49bc5036215fa2bd66aa9 (diff) |
[Trivial] Grammar and typo correction
Minor corrections in src\test\* .
Diffstat (limited to 'src/test/script_tests.cpp')
-rw-r--r-- | src/test/script_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/script_tests.cpp b/src/test/script_tests.cpp index 6f057f43b4..32184165f7 100644 --- a/src/test/script_tests.cpp +++ b/src/test/script_tests.cpp @@ -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"); |