]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#3696] Fixed old typos
authorFrancis Dupont <fdupont@isc.org>
Wed, 15 Jan 2025 14:29:33 +0000 (15:29 +0100)
committerFrancis Dupont <fdupont@isc.org>
Wed, 15 Jan 2025 14:29:33 +0000 (15:29 +0100)
src/lib/process/d_process.h
src/lib/process/testutils/d_test_stubs.h

index 2a35d8361b294db60a8f9e389864bcaa3bfe9ee0..c1efa45751fd8b963e573df6aa5fc1d932b50169 100644 (file)
@@ -83,7 +83,7 @@ public:
     /// @param cfg_mgr the configuration manager instance that handles
     /// configuration parsing.
     ///
-    /// @throw DProcessBaseError is io_service is NULL.
+    /// @throw DProcessBaseError if io_service is null.
     DProcessBase(const char* app_name, asiolink::IOServicePtr io_service,
                  DCfgMgrBasePtr cfg_mgr)
         : app_name_(app_name), io_service_(io_service), shut_down_flag_(false),
index 9881ee4dca5657e0651344ebb5d7c98e4c8c5517..159e925ba2bcb22a77f058c2c329275fcb5eda64 100644 (file)
@@ -109,7 +109,7 @@ public:
     /// @param io_service is the io_service used by the caller for
     /// asynchronous event handling.
     ///
-    /// @throw DProcessBaseError is io_service is NULL.
+    /// @throw DProcessBaseError if io_service is null.
     DStubProcess(const char* name, asiolink::IOServicePtr io_service);
 
     /// @brief Invoked after process instantiation to perform initialization.
@@ -237,7 +237,7 @@ protected:
     /// ftCreateProcessException OR ftCreateProcessNull.
     ///
     /// @return returns a pointer to the new process instance (DProcessBase*)
-    /// or NULL if SimFailure is set to ftCreateProcessNull.
+    /// or null if SimFailure is set to ftCreateProcessNull.
     /// @throw throws std::runtime_error if SimFailure is set to
     /// ftCreateProcessException.
     virtual DProcessBase* createProcess();