From 8f86c107f7fc3911628c7b6973da5b3285211561 Mon Sep 17 00:00:00 2001 From: Thomas Markwalder Date: Tue, 12 Mar 2024 09:11:46 -0400 Subject: [PATCH] [#3280] Fixed typos --- src/lib/asiolink/process_spawn.cc | 4 ++-- src/lib/testutils/gtest_utils.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/asiolink/process_spawn.cc b/src/lib/asiolink/process_spawn.cc index ec40fdf837..9f55b51d28 100644 --- a/src/lib/asiolink/process_spawn.cc +++ b/src/lib/asiolink/process_spawn.cc @@ -83,8 +83,8 @@ public: /// @param vars Environment variables for the program to be executed. /// @param inherit_env whether the spawned process will inherit the /// environment before adding 'vars' on top. - /// @param sync enables syncrhonous mode (spawning thread waits on - /// child to cmplete if true) + /// @param sync enables synchronous mode (spawning thread waits on + /// child to complete if true) ProcessSpawnImpl(IOServicePtr io_service, const std::string& executable, const ProcessArgs& args, diff --git a/src/lib/testutils/gtest_utils.h b/src/lib/testutils/gtest_utils.h index 2a58f898e6..76afb1e22d 100644 --- a/src/lib/testutils/gtest_utils.h +++ b/src/lib/testutils/gtest_utils.h @@ -92,7 +92,7 @@ namespace test { /// if the given expression is true. This works around the lack of /// GTEST_SKIP prior to googletest 1.10. /// -/// @note This macro cannot be used in testing::Test::SetUp() +/// @note This macro cannot be used in testing::Test::SetUp() /// to skip tests (unless running with googletest 1.10 or later). /// It must be used directly within the body of each unit test. /// -- 2.47.3