diff --git a/examples/wireless/wifi-simple-interference.cc b/examples/wireless/wifi-simple-interference.cc index 10f87707b..29633e449 100644 --- a/examples/wireless/wifi-simple-interference.cc +++ b/examples/wireless/wifi-simple-interference.cc @@ -122,7 +122,7 @@ ReceivePacket(Ptr socket) /** * Generate traffic * - * @param socket The seding socket. + * @param socket The sending socket. * @param pktSize The packet size. * @param pktCount The packet counter. * @param pktInterval The interval between two packets. diff --git a/src/wifi/examples/wifi-bianchi.cc b/src/wifi/examples/wifi-bianchi.cc index 0cf8b2ae1..3599424b5 100644 --- a/src/wifi/examples/wifi-bianchi.cc +++ b/src/wifi/examples/wifi-bianchi.cc @@ -1935,11 +1935,11 @@ ContextToMac(std::string context) // Functions for tracing. /** - * Incremement the counter for a given address. + * Increment the counter for a given address. * * @param [out] counter The counter to increment. - * @param addr The address to incremement the counter for. - * @param increment The incremement (1 if omitted). + * @param addr The address to increment the counter for. + * @param increment The increment (1 if omitted). */ void IncrementCounter(std::map& counter, diff --git a/src/wifi/model/interference-helper.h b/src/wifi/model/interference-helper.h index 885806494..a36edaeac 100644 --- a/src/wifi/model/interference-helper.h +++ b/src/wifi/model/interference-helper.h @@ -91,7 +91,7 @@ class Event : public SimpleRefCount /** * Update the PPDU that initially generated the event. * This is needed to have the PPDU holding the correct TXVECTOR - * upon reception of multiple signals carring the same content + * upon reception of multiple signals carrying the same content * but over different channel width (typically non-HT duplicates). * * @param ppdu the new PPDU to use for this event. diff --git a/src/wifi/test/wifi-primary-channels-test.cc b/src/wifi/test/wifi-primary-channels-test.cc index 310191731..c0a16cd7f 100644 --- a/src/wifi/test/wifi-primary-channels-test.cc +++ b/src/wifi/test/wifi-primary-channels-test.cc @@ -548,7 +548,7 @@ WifiPrimaryChannelsTest::DoRun() * | |-----| |-----| |-----| |-----| * * Then, we double the transmission channel width. We will have four rounds - * of transmissions. We avoid using adjacent channels to avoid interfence + * of transmissions. We avoid using adjacent channels to avoid interference * among transmissions: * * AP0 AP4 @@ -607,7 +607,7 @@ WifiPrimaryChannelsTest::DoRun() // To have simultaneous transmissions on adjacent channels, just initialize // nRounds to 1 and nApsPerRound to m_channelWidth / 20. Of course, the test - // will fail because some stations will not receive some frames due to interfence + // will fail because some stations will not receive some frames due to interference uint16_t nRounds = 2; uint16_t nApsPerRound = Count20MHzSubchannels(m_channelWidth) / 2; for (MHz_u txChannelWidth{20}; txChannelWidth <= m_channelWidth;