]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#278,!162] Corrected typos in the template argument name. 278-add-documention-on-developing-your-own-packet-queue-implementation-to-developer-s-guide
authorMarcin Siodelski <marcin@isc.org>
Mon, 10 Dec 2018 19:53:53 +0000 (20:53 +0100)
committerMarcin Siodelski <marcin@isc.org>
Mon, 10 Dec 2018 19:53:53 +0000 (20:53 +0100)
src/lib/dhcp/packet_queue.h
src/lib/dhcp/packet_queue_ring.h

index 64d1302294f57b7871e53b4bee7132f158b6e0a7..07bb7ffb4cbea2d0ea0e471e7772895049e4549c 100644 (file)
@@ -42,7 +42,7 @@ enum class QueueEnd {
 /// implementations which may be used by @c IfaceMgr to store
 /// inbound packets until they are a dequeued for processing.
 ///
-/// @tparam PacktTypePtr Type of packet the queue contains.
+/// @tparam PacketTypePtr Type of packet the queue contains.
 /// This expected to be either isc::dhcp::Pkt4Ptr or isc::dhcp::Pkt6Ptr
 ///
 /// @note Derivations of this class MUST BE thread-safe.
index 4108896c624a63051d2dd2eb7ea56f3d591acc94..3477fff5c00be41c082e66f6d3dd7885a29e0a2b 100644 (file)
@@ -20,7 +20,7 @@ namespace dhcp {
 
 /// @brief Provides a ring-buffer implementation of the PacketQueue interface.
 ///
-/// @tparam PacktTypePtr Type of packet the queue contains.
+/// @tparam PacketTypePtr Type of packet the queue contains.
 /// This expected to be either isc::dhcp::Pkt4Ptr or isc::dhcp::Pkt6Ptr
 template<typename PacketTypePtr>
 class PacketQueueRing : public PacketQueue<PacketTypePtr> {