From af7f2c274cc17e8514c3c5088b6698f87b4d7ca7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Wed, 7 Nov 2018 21:14:38 +0100 Subject: [PATCH] examples: Fix typo in he-wifi-network --- examples/wireless/he-wifi-network.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/wireless/he-wifi-network.cc b/examples/wireless/he-wifi-network.cc index f42fdeacb..a47ad74ba 100644 --- a/examples/wireless/he-wifi-network.cc +++ b/examples/wireless/he-wifi-network.cc @@ -75,7 +75,7 @@ int main (int argc, char *argv[]) cmd.AddValue ("simulationTime", "Simulation time in seconds", simulationTime); cmd.AddValue ("udp", "UDP if set to 1, TCP otherwise", udp); cmd.AddValue ("useRts", "Enable/disable RTS/CTS", useRts); - cmd.AddValue ("mcs", "if set, limit testing to a specific MCS (0-7)", mcs); + cmd.AddValue ("mcs", "if set, limit testing to a specific MCS (0-11)", mcs); cmd.AddValue ("minExpectedThroughput", "if set, simulation fails if the lowest throughput is below this value", minExpectedThroughput); cmd.AddValue ("maxExpectedThroughput", "if set, simulation fails if the highest throughput is above this value", maxExpectedThroughput); cmd.Parse (argc,argv);