summaryrefslogtreecommitdiffstats
path: root/NetworkPkg/Ip6Dxe/Ip6Mld.c
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/Ip6Mld.c
parent6c585b52e52871e52fcf71748534e8a27a308431 (diff)
downloadedk2-7de8045a092ff80abcba541367709d1a309c2961.tar.gz
edk2-7de8045a092ff80abcba541367709d1a309c2961.tar.bz2
edk2-7de8045a092ff80abcba541367709d1a309c2961.zip
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/Ip6Mld.c')
-rw-r--r--NetworkPkg/Ip6Dxe/Ip6Mld.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/NetworkPkg/Ip6Dxe/Ip6Mld.c b/NetworkPkg/Ip6Dxe/Ip6Mld.c
index b7a882b259..ba12089dee 100644
--- a/NetworkPkg/Ip6Dxe/Ip6Mld.c
+++ b/NetworkPkg/Ip6Dxe/Ip6Mld.c
@@ -383,7 +383,7 @@ ERROR:
@retval EFI_OUT_OF_RESOURCES There are not sufficient resources to complete
the operation.
- @retval EFI_SUCESS The address is added to the group address array.
+ @retval EFI_SUCCESS The address is added to the group address array.
**/
EFI_STATUS
@@ -496,8 +496,8 @@ Ip6JoinGroup (
}
//
- // Repeat the report once or twcie after short delays [Unsolicited Report Interval] (default:10s)
- // Simulate this operation as a Multicast-Address-Specific Query was received for that addresss.
+ // Repeat the report once or twice after short delays [Unsolicited Report Interval] (default:10s)
+ // Simulate this operation as a Multicast-Address-Specific Query was received for that address.
//
Group = Ip6CreateMldEntry (IpSb, Address, IP6_UNSOLICITED_REPORT_INTERVAL);
if (Group == NULL) {
@@ -604,7 +604,7 @@ Ip6LeaveGroup (
@retval EFI_ALREADY_STARTED Wants to join the group, but is already a member of it
@retval EFI_OUT_OF_RESOURCES Failed to allocate sufficient resources.
- @retval EFI_DEVICE_ERROR Failed to set the group configuraton.
+ @retval EFI_DEVICE_ERROR Failed to set the group configuration.
@retval EFI_SUCCESS Successfully updated the group setting.
@retval EFI_NOT_FOUND Try to leave the group which it isn't a member.