diff options
author | Antoine Coeur <coeur@gmx.fr> | 2020-02-07 02:08:01 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-02-10 22:30:07 +0000 |
commit | 81c6f1762e9c70efbbaf24358ece67fec74e2083 (patch) | |
tree | 7fc19fdfa4c16ae85c05dee29ce0ea0975f939e4 /NetworkPkg/TcpDxe/TcpDispatcher.c | |
parent | 4cefb5e9032f089f4d572684cd7e230f5f5ab414 (diff) | |
download | edk2-81c6f1762e9c70efbbaf24358ece67fec74e2083.tar.gz |
NetworkPkg/TcpDxe/Tcp: Fix various typos
Fix various typos in documentation, comments and debug strings.
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-49-philmd@redhat.com>
Diffstat (limited to 'NetworkPkg/TcpDxe/TcpDispatcher.c')
-rw-r--r-- | NetworkPkg/TcpDxe/TcpDispatcher.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/NetworkPkg/TcpDxe/TcpDispatcher.c b/NetworkPkg/TcpDxe/TcpDispatcher.c index 9ae08ccc1c..544817866f 100644 --- a/NetworkPkg/TcpDxe/TcpDispatcher.c +++ b/NetworkPkg/TcpDxe/TcpDispatcher.c @@ -309,7 +309,7 @@ TcpFlushPcb ( if (Sock->DevicePath != NULL) {
//
- // Uninstall the device path protocl.
+ // Uninstall the device path protocol.
//
gBS->UninstallProtocolInterface (
Sock->SockHandle,
@@ -549,7 +549,7 @@ TcpConfigurePcb ( }
//
- // Initalize the operating information in this Tcb
+ // Initialize the operating information in this Tcb
//
ASSERT (Tcb->State == TCP_CLOSED &&
IsListEmpty (&Tcb->SndQue) &&
@@ -751,7 +751,7 @@ OnExit: }
/**
- The procotol handler provided to the socket layer, which is used to
+ The protocol handler provided to the socket layer, which is used to
dispatch the socket level requests by calling the corresponding
TCP layer functions.
|