summaryrefslogtreecommitdiffstats
path: root/NetworkPkg/Library/DxeUdpIoLib/DxeUdpIoLib.c
diff options
context:
space:
mode:
authorAntoine Coeur <coeur@gmx.fr>2020-02-07 02:07:55 +0100
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2020-02-10 22:30:07 +0000
commit6deb4baa1f778550df7178d40da37e59e3512f5e (patch)
treea17e95896126afc604db985bd533e2680bec8dcb /NetworkPkg/Library/DxeUdpIoLib/DxeUdpIoLib.c
parentefb565933428cc10e9c00dd162c67d4730d048e6 (diff)
downloadedk2-6deb4baa1f778550df7178d40da37e59e3512f5e.tar.gz
edk2-6deb4baa1f778550df7178d40da37e59e3512f5e.tar.bz2
edk2-6deb4baa1f778550df7178d40da37e59e3512f5e.zip
NetworkPkg/Library: Fix various typos
Fix various typos in comments and documentation. Cc: Jiaxin Wu <jiaxin.wu@intel.com> Cc: Siyuan Fu <siyuan.fu@intel.com> Cc: Maciej Rabeda <maciej.rabeda@intel.com> Signed-off-by: Antoine Coeur <coeur@gmx.fr> Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com> Reviewed-by: Maciej Rabeda <maciej.rabeda@intel.com> Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com> Message-Id: <20200207010831.9046-43-philmd@redhat.com>
Diffstat (limited to 'NetworkPkg/Library/DxeUdpIoLib/DxeUdpIoLib.c')
-rw-r--r--NetworkPkg/Library/DxeUdpIoLib/DxeUdpIoLib.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/NetworkPkg/Library/DxeUdpIoLib/DxeUdpIoLib.c b/NetworkPkg/Library/DxeUdpIoLib/DxeUdpIoLib.c
index 155cb31049..0034a5694f 100644
--- a/NetworkPkg/Library/DxeUdpIoLib/DxeUdpIoLib.c
+++ b/NetworkPkg/Library/DxeUdpIoLib/DxeUdpIoLib.c
@@ -147,7 +147,7 @@ UdpIoRecycleDgram (
/**
The event handle for UDP receive request.
- It will build a NET_BUF from the recieved UDP data, then deliver it
+ It will build a NET_BUF from the received UDP data, then deliver it
to the receiver.
@param[in] Context The UDP RX token.
@@ -335,7 +335,7 @@ UdpIoOnDgramRcvd (
@param[in] UdpIo The UdpIo to receive packets from.
@param[in] CallBack The function to call when receive finished.
@param[in] Context The opaque parameter to the CallBack.
- @param[in] HeadLen The head length to reserver for the packet.
+ @param[in] HeadLen The head length to reserve for the packet.
@return The Wrapped request or NULL if failed to allocate resources or some errors happened.
@@ -410,7 +410,7 @@ UdpIoCreateRxToken (
@param[in] UdpIo The UdpIo to send packet to.
@param[in] Packet The user's packet.
@param[in] EndPoint The local and remote access point.
- @param[in] Gateway The overrided next hop.
+ @param[in] Gateway The overridden next hop.
@param[in] CallBack The function to call when transmission completed.
@param[in] Context The opaque parameter to the call back.
@@ -590,7 +590,7 @@ UdpIoCreateTxToken (
@param[in] ImageHandle The image handle for the driver.
@param[in] Configure The function to configure the created UDP child.
@param[in] UdpVersion The UDP protocol version, UDP4 or UDP6.
- @param[in] Context The opaque parameter for the Configure funtion.
+ @param[in] Context The opaque parameter for the Configure function.
@return Newly-created UDP_IO or NULL if failed.
@@ -755,7 +755,7 @@ FREE_MEM:
@param[in] UdpIo The UDP_IO to cancel packet.
@param[in] IoStatus The IoStatus to return to the packet owners.
- @param[in] ToCancel The select funtion to test whether to cancel this
+ @param[in] ToCancel The select function to test whether to cancel this
packet or not.
@param[in] Context The opaque parameter to the ToCancel.