From: Marcin Siodelski Date: Mon, 10 Dec 2018 19:53:53 +0000 (+0100) Subject: [#278,!162] Corrected typos in the template argument name. X-Git-Tag: 339-doxygen-errors_base~8^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=180e0f89b4a897f0acb7162a86bc1d8b4c46db7c;p=thirdparty%2Fkea.git [#278,!162] Corrected typos in the template argument name. --- diff --git a/src/lib/dhcp/packet_queue.h b/src/lib/dhcp/packet_queue.h index 64d1302294..07bb7ffb4c 100644 --- a/src/lib/dhcp/packet_queue.h +++ b/src/lib/dhcp/packet_queue.h @@ -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. diff --git a/src/lib/dhcp/packet_queue_ring.h b/src/lib/dhcp/packet_queue_ring.h index 4108896c62..3477fff5c0 100644 --- a/src/lib/dhcp/packet_queue_ring.h +++ b/src/lib/dhcp/packet_queue_ring.h @@ -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 class PacketQueueRing : public PacketQueue {