From 27a1dec4e7a8db6b2ecc00f626a052d7a83ff4ae Mon Sep 17 00:00:00 2001 From: didier-brizet Date: Wed, 14 Sep 2022 10:01:22 +0200 Subject: [PATCH] Fix spelling --- test/issue-25-default-values.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/issue-25-default-values.cpp b/test/issue-25-default-values.cpp index 354acf3..6b3e0fa 100644 --- a/test/issue-25-default-values.cpp +++ b/test/issue-25-default-values.cpp @@ -78,19 +78,19 @@ int main(void) } if (default_patch.size() != 1) { - std::cerr << "Patch with defaults is expected to contain one opperation" << std::endl; + std::cerr << "Patch with defaults is expected to contain one operation" << std::endl; return 1; } const auto &single_op = default_patch[0]; if (!single_op.contains("op")) { - std::cerr << "Patch with defaults is expected to contain opperation entry" << std::endl; + std::cerr << "Patch with defaults is expected to contain operation entry" << std::endl; return 1; } if (single_op["op"].get() != "add") { - std::cerr << "Patch with defaults is expected to contain add opperation" << std::endl; + std::cerr << "Patch with defaults is expected to contain add operation" << std::endl; return 1; } @@ -132,19 +132,19 @@ int main(void) } if (default_patch.size() != 1) { - std::cerr << "Patch with defaults is expected to contain one opperation" << std::endl; + std::cerr << "Patch with defaults is expected to contain one operation" << std::endl; return 1; } const auto &single_op = default_patch[0]; if (!single_op.contains("op")) { - std::cerr << "Patch with defaults is expected to contain opperation entry" << std::endl; + std::cerr << "Patch with defaults is expected to contain operation entry" << std::endl; return 1; } if (single_op["op"].get() != "add") { - std::cerr << "Patch with defaults is expected to contain add opperation" << std::endl; + std::cerr << "Patch with defaults is expected to contain add operation" << std::endl; return 1; }