Fix various typos

This commit is contained in:
Gabriel Arrobo
2019-03-30 20:30:18 -07:00
committed by Tom Henderson
parent 7112e718dc
commit dba4333f85
6 changed files with 5 additions and 8 deletions

View File

@@ -40,7 +40,7 @@ class Packet;
*
* This class records the packet lost in a client/server transmission
* leveraging a sequence number. All the packets outside a given window
* (i.e., too old wit respect to the last sequence number seen) are considered lost,
* (i.e., too old with respect to the last sequence number seen) are considered lost,
*/
class PacketLossCounter
{

View File

@@ -141,7 +141,7 @@ main (int argc, char ** argv)
<< "verbose progress message: " << (verbose ? "on\n" : "off\n")
<< "target reporting interval: " << interval.As (Time::S) << "\n"
<< "average event sleep time: " << wait.As (Time::MS) << "\n"
<< "total simulatino run time: " << stop.As (Time::S)
<< "total simulation run time: " << stop.As (Time::S)
<< std::endl;
Ptr<Hold> h = Create<Hold> (wait, interval);

View File

@@ -449,9 +449,6 @@ PointToPointEpcHelper::AddX2Interface (Ptr<Node> enb1, Ptr<Node> enb2)
// Create a point to point link between the two eNBs with
// the corresponding new NetDevices on each side
NodeContainer enbNodes;
enbNodes.Add (enb1);
enbNodes.Add (enb2);
PointToPointHelper p2ph;
p2ph.SetDeviceAttribute ("DataRate", DataRateValue (m_x2LinkDataRate));
p2ph.SetDeviceAttribute ("Mtu", UintegerValue (m_x2LinkMtu));

View File

@@ -56,7 +56,7 @@ public:
virtual void DoInitialize (void);
/**
* \brief The couple of mobility mnode that form a fading channel realization
* \brief The couple of mobility node that form a fading channel realization
*/
typedef std::pair<Ptr<const MobilityModel>, Ptr<const MobilityModel> > ChannelRealizationId_t;

View File

@@ -399,7 +399,7 @@ public:
virtual ~RoutingHelper ();
/**
* \brief Installs routing funcationality on nodes and their
* \brief Installs routing functionality on nodes and their
* devices and interfaces.
* \param c node container
* \param d net device container

View File

@@ -34,7 +34,7 @@ struct IdealWifiRemoteStation : public WifiRemoteStation
{
double m_lastSnrObserved; //!< SNR of most recently reported packet sent to the remote station
double m_lastSnrCached; //!< SNR most recently used to select a rate
uint8_t m_nss; //!< Number of spacial streams
uint8_t m_nss; //!< Number of spatial streams
WifiMode m_lastMode; //!< Mode most recently used to the remote station
};