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>
This commit is contained in:
Antoine Coeur
2020-02-07 02:07:53 +01:00
committed by mergify[bot]
parent 6c585b52e5
commit 7de8045a09
20 changed files with 73 additions and 73 deletions

View File

@@ -1,5 +1,5 @@
/** @file
EFI IP6 route table and route cache table defintions.
EFI IP6 route table and route cache table definitions.
Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
@@ -110,7 +110,7 @@ Ip6FreeRouteCacheEntry (
/**
Find a route cache with the destination and source address. This is
used by the ICMPv6 redirect messasge process.
used by the ICMPv6 redirect message process.
@param[in] RtTable The route table to search the cache for.
@param[in] Dest The destination address.
@@ -181,7 +181,7 @@ Ip6CleanRouteTable (
@param[in] GatewayAddress The next hop address. This is optional parameter
that may be NULL.
@return NULL if it failed to allocate memeory. Otherwise, the newly created route entry.
@return NULL if it failed to allocate memory. Otherwise, the newly created route entry.
**/
IP6_ROUTE_ENTRY *
@@ -201,7 +201,7 @@ Ip6CreateRouteEntry (
2. The local route entries have precedence over the default route entry.
@param[in] RtTable The route table to search from.
@param[in] Destination The destionation address to search. If NULL, search
@param[in] Destination The destination address to search. If NULL, search
the route table by NextHop.
@param[in] NextHop The next hop address. If NULL, search the route table
by Destination.
@@ -260,7 +260,7 @@ Ip6AddRoute (
@retval EFI_SUCCESS Successfully removed the route entry.
@retval EFI_NOT_FOUND There is no route entry in the table with that
properity.
property.
**/
EFI_STATUS