diff options
| author | Lauda <[email protected]> | 2017-01-13 16:05:16 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2017-01-22 13:18:51 +0100 |
| commit | 5c66d41b7ffe8557ce5036613c9854d2f1dc3c37 (patch) | |
| tree | 665a4171ec4582a2d4ba91989a26ab5dd2dc34bf /src/test/script_tests.cpp | |
| parent | Merge #9525: test: Include tx data in EXTRA_DIST (diff) | |
| download | discoin-5c66d41b7ffe8557ce5036613c9854d2f1dc3c37.tar.xz discoin-5c66d41b7ffe8557ce5036613c9854d2f1dc3c37.zip | |
[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 6f057f43b..32184165f 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"); |