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>
This commit is contained in:
Antoine Coeur
2020-02-07 02:08:01 +01:00
committed by mergify[bot]
parent 4cefb5e903
commit 81c6f1762e
13 changed files with 37 additions and 37 deletions

View File

@@ -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.