]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#3280] Fixed typos
authorThomas Markwalder <tmark@isc.org>
Tue, 12 Mar 2024 13:11:46 +0000 (09:11 -0400)
committerThomas Markwalder <tmark@isc.org>
Tue, 12 Mar 2024 15:54:55 +0000 (15:54 +0000)
src/lib/asiolink/process_spawn.cc
src/lib/testutils/gtest_utils.h

index ec40fdf837f89883d6099ffed9c0ca65b793557d..9f55b51d28f86c09bf89b8d54bada05e008c64fb 100644 (file)
@@ -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,
index 2a58f898e6f29b7b75b3036d920e6c90bc1e670a..76afb1e22d93688c5a1975c9a09263efe493a051 100644 (file)
@@ -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.
 ///