From 3833b6fba6460615ca8c19c7dd7ec9f76c565d77 Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Fri, 9 Dec 2016 18:39:39 +0300 Subject: [PATCH] wifi: Fix WifiMacQueue::PushFront documentation --- src/wifi/model/wifi-mac-queue.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wifi/model/wifi-mac-queue.h b/src/wifi/model/wifi-mac-queue.h index df20b4998..6195038c3 100644 --- a/src/wifi/model/wifi-mac-queue.h +++ b/src/wifi/model/wifi-mac-queue.h @@ -85,14 +85,14 @@ public: /** * Enqueue the given packet and its corresponding WifiMacHeader at the end of the queue. * - * \param packet the packet to be euqueued at the end + * \param packet the packet to be enqueued at the end * \param hdr the header of the given packet */ void Enqueue (Ptr packet, const WifiMacHeader &hdr); /** * Enqueue the given packet and its corresponding WifiMacHeader at the front of the queue. * - * \param packet the packet to be euqueued at the end + * \param packet the packet to be enqueued at the front * \param hdr the header of the given packet */ void PushFront (Ptr packet, const WifiMacHeader &hdr);