From c4f2656d8c77f75b6d3cc7bf31ca18760505acff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Mon, 8 Feb 2016 23:19:52 +0100 Subject: [PATCH] wifi: Cleanup Doxygen in dcf.h --- src/wifi/model/dcf.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/wifi/model/dcf.h b/src/wifi/model/dcf.h index 5bc422c50..2c2793f72 100644 --- a/src/wifi/model/dcf.h +++ b/src/wifi/model/dcf.h @@ -35,15 +35,15 @@ public: static TypeId GetTypeId (void); /** - * Set the minimum congestion window size. + * Set the minimum contention window size. * - * \param minCw the minimum congestion window size + * \param minCw the minimum contention window size */ virtual void SetMinCw (uint32_t minCw) = 0; /** - * Set the maximum congestion window size. + * Set the maximum contention window size. * - * \param maxCw the maximum congestion window size + * \param maxCw the maximum contention window size */ virtual void SetMaxCw (uint32_t maxCw) = 0; /** @@ -54,15 +54,15 @@ public: */ virtual void SetAifsn (uint32_t aifsn) = 0; /** - * Return the minimum congestion window size. + * Return the minimum contention window size. * - * \return the minimum congestion window size + * \return the minimum contention window size */ virtual uint32_t GetMinCw (void) const = 0; /** - * Return the maximum congestion window size. + * Return the maximum contention window size. * - * \return the maximum congestion window size + * \return the maximum contention window size */ virtual uint32_t GetMaxCw (void) const = 0; /**