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>
This commit is contained in:
Gary Lin 2016-10-19 15:01:35 +08:00 committed by Ruiyu Ni
parent be9007810e
commit 268d344557
8 changed files with 18 additions and 18 deletions

View File

@ -1,5 +1,5 @@
/** @file /** @file
Provides application point extension for "C" style main funciton. Provides application point extension for "C" style main function.
Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials

View File

@ -2,7 +2,7 @@
Provides interface to shell internal functions for shell commands. Provides interface to shell internal functions for shell commands.
This library is for use ONLY by shell commands linked into the shell application. This library is for use ONLY by shell commands linked into the shell application.
This library will not funciton if it is used for UEFI Shell 2.0 Applications. This library will not function if it is used for UEFI Shell 2.0 Applications.
Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.<BR> Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.<BR>
(C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR> (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>

View File

@ -124,7 +124,7 @@ GUID for the shell environment2 extension (main GUID above).
@param[in] ParentImageHandle Handle of the image executing this operation. @param[in] ParentImageHandle Handle of the image executing this operation.
@param[in] CommandLine The string command line to execute. @param[in] CommandLine The string command line to execute.
@param[in] DebugOutput TRUE indicates that errors should be printed directly. @param[in] DebugOutput TRUE indicates that errors should be printed directly.
FALSE supresses error messages. FALSE suppresses error messages.
@retval EFI_SUCCESS The command line executed and completed. @retval EFI_SUCCESS The command line executed and completed.
@retval EFI_ABORTED The operation aborted. @retval EFI_ABORTED The operation aborted.

View File

@ -1,5 +1,5 @@
/** @file /** @file
Provides application point extension for "C" style main funciton Provides application point extension for "C" style main function
Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.<BR> Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials

View File

@ -130,7 +130,7 @@ IsDriverProt (
@param[in] TheHandle The handles to show info on. @param[in] TheHandle The handles to show info on.
@param[in] Language Language string per UEFI specification. @param[in] Language Language string per UEFI specification.
@param[in] Seperator Separator string between information blocks. @param[in] Separator Separator string between information blocks.
@param[in] Verbose TRUE for extra info, FALSE otherwise. @param[in] Verbose TRUE for extra info, FALSE otherwise.
@param[in] ExtraInfo TRUE for extra info, FALSE otherwise. @param[in] ExtraInfo TRUE for extra info, FALSE otherwise.
@ -141,7 +141,7 @@ CHAR16*
GetProtocolInfoString( GetProtocolInfoString(
IN CONST EFI_HANDLE TheHandle, IN CONST EFI_HANDLE TheHandle,
IN CONST CHAR8 *Language, IN CONST CHAR8 *Language,
IN CONST CHAR16 *Seperator, IN CONST CHAR16 *Separator,
IN CONST BOOLEAN Verbose, IN CONST BOOLEAN Verbose,
IN CONST BOOLEAN ExtraInfo IN CONST BOOLEAN ExtraInfo
) )
@ -169,7 +169,7 @@ GetProtocolInfoString(
if (Temp != NULL) { if (Temp != NULL) {
ASSERT((RetVal == NULL && Size == 0) || (RetVal != NULL)); ASSERT((RetVal == NULL && Size == 0) || (RetVal != NULL));
if (Size != 0) { if (Size != 0) {
StrnCatGrow(&RetVal, &Size, Seperator, 0); StrnCatGrow(&RetVal, &Size, Separator, 0);
} }
StrnCatGrow(&RetVal, &Size, L"%H", 0); StrnCatGrow(&RetVal, &Size, L"%H", 0);
StrnCatGrow(&RetVal, &Size, Temp, 0); StrnCatGrow(&RetVal, &Size, Temp, 0);
@ -185,7 +185,7 @@ GetProtocolInfoString(
StrnCatGrow(&RetVal, &Size, Temp, 0); StrnCatGrow(&RetVal, &Size, Temp, 0);
StrnCatGrow(&RetVal, &Size, L")\r\n", 0); StrnCatGrow(&RetVal, &Size, L")\r\n", 0);
} else { } else {
StrnCatGrow(&RetVal, &Size, Seperator, 0); StrnCatGrow(&RetVal, &Size, Separator, 0);
StrnCatGrow(&RetVal, &Size, Temp, 0); StrnCatGrow(&RetVal, &Size, Temp, 0);
} }
FreePool(Temp); FreePool(Temp);
@ -201,7 +201,7 @@ GetProtocolInfoString(
} }
ASSERT((RetVal == NULL && Size == 0) || (RetVal != NULL)); ASSERT((RetVal == NULL && Size == 0) || (RetVal != NULL));
StrnCatGrow(&RetVal, &Size, Seperator, 0); StrnCatGrow(&RetVal, &Size, Separator, 0);
return (RetVal); return (RetVal);
} }

View File

@ -99,7 +99,7 @@ ShellLevel2CommandsLibConstructor (
ShellCommandRegisterCommandName(L"vol", ShellCommandRunVol , ShellCommandGetManFileNameLevel2, 2, L"", TRUE, gShellLevel2HiiHandle, STRING_TOKEN(STR_GET_HELP_VOL) ); ShellCommandRegisterCommandName(L"vol", ShellCommandRunVol , ShellCommandGetManFileNameLevel2, 2, L"", TRUE, gShellLevel2HiiHandle, STRING_TOKEN(STR_GET_HELP_VOL) );
// //
// support for permenant (built in) aliases // support for permanent (built in) aliases
// //
ShellCommandRegisterAlias(L"rm", L"del"); ShellCommandRegisterAlias(L"rm", L"del");
ShellCommandRegisterAlias(L"ls", L"dir"); ShellCommandRegisterAlias(L"ls", L"dir");

View File

@ -1599,7 +1599,7 @@ ShellCommandRunPing (
} }
// //
// Parse the paramter of count number. // Parse the parameter of count number.
// //
ValueStr = ShellCommandLineGetValue (ParamPackage, L"-n"); ValueStr = ShellCommandLineGetValue (ParamPackage, L"-n");
if (ValueStr != NULL) { if (ValueStr != NULL) {
@ -1617,7 +1617,7 @@ ShellCommandRunPing (
SendNumber = DEFAULT_SEND_COUNT; SendNumber = DEFAULT_SEND_COUNT;
} }
// //
// Parse the paramter of buffer size. // Parse the parameter of buffer size.
// //
ValueStr = ShellCommandLineGetValue (ParamPackage, L"-l"); ValueStr = ShellCommandLineGetValue (ParamPackage, L"-l");
if (ValueStr != NULL) { if (ValueStr != NULL) {
@ -1639,7 +1639,7 @@ ShellCommandRunPing (
ZeroMem (&DstAddress, sizeof (EFI_IPv6_ADDRESS)); 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"); ValueStr = ShellCommandLineGetValue (ParamPackage, L"-s");
if (ValueStr == NULL) { if (ValueStr == NULL) {
@ -1660,7 +1660,7 @@ ShellCommandRunPing (
} }
} }
// //
// Parse the paramter of destination ip address. // Parse the parameter of destination ip address.
// //
NonOptionCount = ShellCommandLineGetCount(ParamPackage); NonOptionCount = ShellCommandLineGetCount(ParamPackage);
if (NonOptionCount < 2) { if (NonOptionCount < 2) {

View File

@ -1177,7 +1177,7 @@ ShellCommandRunPing6 (
BufferSize = 16; BufferSize = 16;
// //
// Parse the paramter of count number. // Parse the parameter of count number.
// //
ValueStr = ShellCommandLineGetValue (ParamPackage, L"-n"); ValueStr = ShellCommandLineGetValue (ParamPackage, L"-n");
ValueStrPtr = ValueStr; ValueStrPtr = ValueStr;
@ -1194,7 +1194,7 @@ ShellCommandRunPing6 (
} }
} }
// //
// Parse the paramter of buffer size. // Parse the parameter of buffer size.
// //
ValueStr = ShellCommandLineGetValue (ParamPackage, L"-l"); ValueStr = ShellCommandLineGetValue (ParamPackage, L"-l");
ValueStrPtr = ValueStr; ValueStrPtr = ValueStr;
@ -1215,7 +1215,7 @@ ShellCommandRunPing6 (
ZeroMem (&DstAddress, sizeof (EFI_IPv6_ADDRESS)); 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"); ValueStr = ShellCommandLineGetValue (ParamPackage, L"-s");
ValueStrPtr = ValueStr; ValueStrPtr = ValueStr;
@ -1229,7 +1229,7 @@ ShellCommandRunPing6 (
} }
} }
// //
// Parse the paramter of destination ip address. // Parse the parameter of destination ip address.
// //
NonOptionCount = ShellCommandLineGetCount(ParamPackage); NonOptionCount = ShellCommandLineGetCount(ParamPackage);
ValueStr = ShellCommandLineGetRawValue (ParamPackage, (UINT32)(NonOptionCount-1)); ValueStr = ShellCommandLineGetRawValue (ParamPackage, (UINT32)(NonOptionCount-1));