From: Francis Dupont Date: Mon, 29 Jan 2018 20:13:04 +0000 (+0100) Subject: [5457] spelling X-Git-Tag: ha_checkpoints12~3^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1dee70eecf795549344ba854117b76b0377dcd7;p=thirdparty%2Fkea.git [5457] spelling --- diff --git a/src/lib/hooks/hooks_manager.h b/src/lib/hooks/hooks_manager.h index 066e14922b..aff80082b3 100644 --- a/src/lib/hooks/hooks_manager.h +++ b/src/lib/hooks/hooks_manager.h @@ -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 diff --git a/src/lib/hooks/parking_lots.h b/src/lib/hooks/parking_lots.h index a510bcdceb..88fecd6307 100644 --- a/src/lib/hooks/parking_lots.h +++ b/src/lib/hooks/parking_lots.h @@ -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 @@ -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 ParkingLotPtr; /// @brief Provides a limited view to the @c ParkingLot.