summaryrefslogtreecommitdiff
path: root/NetworkPkg/Ip6Dxe/Ip6Input.h
diff options
context:
space:
mode:
authorAntoine Coeur <coeur@gmx.fr>2020-02-07 02:07:53 +0100
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2020-02-10 22:30:07 +0000
commit7de8045a092ff80abcba541367709d1a309c2961 (patch)
tree7d5b2d224a57de2042251728ebeef040329ee78a /NetworkPkg/Ip6Dxe/Ip6Input.h
parent6c585b52e52871e52fcf71748534e8a27a308431 (diff)
downloadedk2-7de8045a092ff80abcba541367709d1a309c2961.zip
edk2-7de8045a092ff80abcba541367709d1a309c2961.tar.gz
edk2-7de8045a092ff80abcba541367709d1a309c2961.tar.bz2
NetworkPkg/Ip6Dxe: 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-41-philmd@redhat.com>
Diffstat (limited to 'NetworkPkg/Ip6Dxe/Ip6Input.h')
-rw-r--r--NetworkPkg/Ip6Dxe/Ip6Input.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/NetworkPkg/Ip6Dxe/Ip6Input.h b/NetworkPkg/Ip6Dxe/Ip6Input.h
index 66ddf35..76a4edb 100644
--- a/NetworkPkg/Ip6Dxe/Ip6Input.h
+++ b/NetworkPkg/Ip6Dxe/Ip6Input.h
@@ -149,7 +149,7 @@ Ip6InstanceDeliverPacket (
@retval EFI_SUCCESS The packet was bypassed, and all buffers remain the same.
@retval EFI_SUCCESS The packet was protected.
@retval EFI_ACCESS_DENIED The packet was discarded.
- @retval EFI_OUT_OF_RESOURCES There are not suffcient resources to complete the operation.
+ @retval EFI_OUT_OF_RESOURCES There are not sufficient resources to complete the operation.
@retval EFI_BUFFER_TOO_SMALL The number of non-empty blocks is bigger than the
number of input data blocks when building a fragment table.
@@ -192,11 +192,11 @@ Ip6CleanAssembleTable (
/**
Demultiple the packet. the packet delivery is processed in two
- passes. The first pass will enque a shared copy of the packet
+ passes. The first pass will enqueue a shared copy of the packet
to each IP6 child that accepts the packet. The second pass will
deliver a non-shared copy of the packet to each IP6 child that
has pending receive requests. Data is copied if more than one
- child wants to consume the packet bacause each IP child need
+ child wants to consume the packet because each IP child need
its own copy of the packet to make changes.
@param[in] IpSb The IP6 service instance that received the packet.