summaryrefslogtreecommitdiff
path: root/ShellPkg/Library/UefiShellNetwork2CommandsLib
diff options
context:
space:
mode:
authorGary Lin <glin@suse.com>2016-10-19 15:01:35 +0800
committerRuiyu Ni <ruiyu.ni@intel.com>2016-11-15 11:05:34 +0800
commit268d344557c38198d34359b50532df343bada5f1 (patch)
tree2da457baf92b0446a00a36a260751b68735bb217 /ShellPkg/Library/UefiShellNetwork2CommandsLib
parentbe9007810e722cb733e334b2dc4c9bbe26fdbb7d (diff)
downloadedk2-268d344557c38198d34359b50532df343bada5f1.zip
edk2-268d344557c38198d34359b50532df343bada5f1.tar.gz
edk2-268d344557c38198d34359b50532df343bada5f1.tar.bz2
ShellPkg: Fix typos in comments and variables
- funciton -> function - paramter -> parameter - supresses -> suppresses - Seperator -> Separator - permenant -> permanent Reviewed-by: Jaben Carsey <jaben.carsey@intel.com> Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Gary Lin <glin@suse.com>
Diffstat (limited to 'ShellPkg/Library/UefiShellNetwork2CommandsLib')
-rw-r--r--ShellPkg/Library/UefiShellNetwork2CommandsLib/Ping6.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ShellPkg/Library/UefiShellNetwork2CommandsLib/Ping6.c b/ShellPkg/Library/UefiShellNetwork2CommandsLib/Ping6.c
index 90a2604..265258f 100644
--- a/ShellPkg/Library/UefiShellNetwork2CommandsLib/Ping6.c
+++ b/ShellPkg/Library/UefiShellNetwork2CommandsLib/Ping6.c
@@ -1177,7 +1177,7 @@ ShellCommandRunPing6 (
BufferSize = 16;
//
- // Parse the paramter of count number.
+ // Parse the parameter of count number.
//
ValueStr = ShellCommandLineGetValue (ParamPackage, L"-n");
ValueStrPtr = ValueStr;
@@ -1194,7 +1194,7 @@ ShellCommandRunPing6 (
}
}
//
- // Parse the paramter of buffer size.
+ // Parse the parameter of buffer size.
//
ValueStr = ShellCommandLineGetValue (ParamPackage, L"-l");
ValueStrPtr = ValueStr;
@@ -1215,7 +1215,7 @@ ShellCommandRunPing6 (
ZeroMem (&DstAddress, sizeof (EFI_IPv6_ADDRESS));
//
- // Parse the paramter of source ip address.
+ // Parse the parameter of source ip address.
//
ValueStr = ShellCommandLineGetValue (ParamPackage, L"-s");
ValueStrPtr = ValueStr;
@@ -1229,7 +1229,7 @@ ShellCommandRunPing6 (
}
}
//
- // Parse the paramter of destination ip address.
+ // Parse the parameter of destination ip address.
//
NonOptionCount = ShellCommandLineGetCount(ParamPackage);
ValueStr = ShellCommandLineGetRawValue (ParamPackage, (UINT32)(NonOptionCount-1));