From 9d0d78e4ea2fd22819bab3b10a22ba284808cfd3 Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Sun, 5 Feb 2023 10:09:18 -0800 Subject: [PATCH] examples: Fix spelling errors --- examples/tutorial/tutorial-app.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/tutorial/tutorial-app.h b/examples/tutorial/tutorial-app.h index e6352d2cf..7ef0af004 100644 --- a/examples/tutorial/tutorial-app.h +++ b/examples/tutorial/tutorial-app.h @@ -46,7 +46,7 @@ class TutorialApp : public Application * \param address The destination address. * \param packetSize The packet size to transmit. * \param nPackets The number of packets to transmit. - * \param dataRate the datarate to use. + * \param dataRate the data rate to use. */ void Setup(Ptr socket, Address address, @@ -63,14 +63,14 @@ class TutorialApp : public Application /// Send a packet. void SendPacket(); - Ptr m_socket; //!< The tranmission socket. + Ptr m_socket; //!< The transmission socket. Address m_peer; //!< The destination address. uint32_t m_packetSize; //!< The packet size. - uint32_t m_nPackets; //!< The number of pacts to send. - DataRate m_dataRate; //!< The datarate to use. + uint32_t m_nPackets; //!< The number of packets to send. + DataRate m_dataRate; //!< The data rate to use. EventId m_sendEvent; //!< Send event. bool m_running; //!< True if the application is running. - uint32_t m_packetsSent; //!< The number of pacts sent. + uint32_t m_packetsSent; //!< The number of packets sent. }; } // namespace ns3