]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[5457] spelling
authorFrancis Dupont <fdupont@isc.org>
Mon, 29 Jan 2018 20:13:04 +0000 (21:13 +0100)
committerFrancis Dupont <fdupont@isc.org>
Mon, 29 Jan 2018 20:13:04 +0000 (21:13 +0100)
src/lib/hooks/hooks_manager.h
src/lib/hooks/parking_lots.h

index 066e14922b02c16d8006e28ccc84fc2646b6cfc9..aff80082b3a21e4ddf0f9a8d7e3a45f2d2f2a1fc 100644 (file)
@@ -241,7 +241,7 @@ public:
     /// before the response is sent to a client. In this case, the object type
     /// is a pointer to the processed packet. Therefore, further in this
     /// description we're going to refer to the parked objects as "parked
-    /// packets". However, any other object can be parked if neccessary.
+    /// packets". However, any other object can be parked if necessary.
     ///
     /// The following is the typical flow when packets are parked. The callouts
     /// responsible for performing an asynchronous operation signal this need
index a510bcdcebe7523a88a308113f43374f7cc92ea2..88fecd630759b1cc8b7a0efa62bc4e1ff262633f 100644 (file)
@@ -104,7 +104,7 @@ public:
     ///
     /// @param parked_object parked object to be unparked.
     /// @param force boolean value indicating if the reference counting should
-    /// be ignored and the object should be unparked immediatelly.
+    /// be ignored and the object should be unparked immediately.
     /// @return false if the object couldn't be unparked because there is
     /// no such object, true otherwise.
     template<typename T>
@@ -126,7 +126,7 @@ public:
             }
 
             // Parked object found, so return true to indicate that the
-            // operation was successful. It doesn't neccessarily mean
+            // operation was successful. It doesn't necessarily mean
             // that the object was unparked, but at least the reference
             // count was decreased.
             return (true);
@@ -206,7 +206,7 @@ private:
     }
 };
 
-/// @brief Type of the pointer to the pakring lot.
+/// @brief Type of the pointer to the parking lot.
 typedef boost::shared_ptr<ParkingLot> ParkingLotPtr;
 
 /// @brief Provides a limited view to the @c ParkingLot.