From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: devel@edk2.groups.io
Cc: Laszlo Ersek <lersek@redhat.com>, Eric Dong <eric.dong@intel.com>
Subject: [PATCH v3 67/78] ShellPkg/Application: Fix various typos
Date: Fri, 7 Feb 2020 02:08:20 +0100 [thread overview]
Message-ID: <20200207010831.9046-68-philmd@redhat.com> (raw)
In-Reply-To: <20200207010831.9046-1-philmd@redhat.com>
From: Antoine Coeur <coeur@gmx.fr>
Fix various typos in comments and documentation.
Cc: Ray Ni <ray.ni@intel.com>
Cc: Zhichao Gao <zhichao.gao@intel.com>
Signed-off-by: Antoine Coeur <coeur@gmx.fr>
Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>
Reviewed-by: Zhichao Gao <zhichao.gao@intel.com>
Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
---
ShellPkg/Application/Shell/ConsoleLogger.h | 4 +--
.../Application/Shell/FileHandleWrappers.h | 6 ++--
ShellPkg/Application/Shell/Shell.h | 2 +-
ShellPkg/Application/Shell/ShellEnvVar.h | 36 +++++++++----------
ShellPkg/Application/Shell/ShellManParser.h | 10 +++---
.../Shell/ShellParametersProtocol.h | 20 +++++------
ShellPkg/Application/Shell/ShellProtocol.h | 12 +++----
ShellPkg/Application/Shell/ConsoleLogger.c | 12 +++----
ShellPkg/Application/Shell/ConsoleWrappers.c | 2 +-
.../Application/Shell/FileHandleWrappers.c | 8 ++---
ShellPkg/Application/Shell/Shell.c | 8 ++---
ShellPkg/Application/Shell/ShellEnvVar.c | 8 ++---
ShellPkg/Application/Shell/ShellManParser.c | 20 +++++------
.../Shell/ShellParametersProtocol.c | 26 +++++++-------
ShellPkg/Application/Shell/ShellProtocol.c | 36 +++++++++----------
ShellPkg/Application/ShellCTestApp/README.txt | 2 +-
16 files changed, 106 insertions(+), 106 deletions(-)
diff --git a/ShellPkg/Application/Shell/ConsoleLogger.h b/ShellPkg/Application/Shell/ConsoleLogger.h
index c2d5a9dcd4e0..0a01bc2ca201 100644
--- a/ShellPkg/Application/Shell/ConsoleLogger.h
+++ b/ShellPkg/Application/Shell/ConsoleLogger.h
@@ -117,7 +117,7 @@ UpdateDisplayFromHistory(
);
/**
- Reset the text output device hardware and optionaly run diagnostics
+ Reset the text output device hardware and optionally run diagnostics
@param This Pointer to EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL
@param ExtendedVerification Indicates that a more extensive test may be performed
@@ -305,7 +305,7 @@ ConsoleLoggerEnableCursor (
@param[in] ConsoleInfo The pointer to the instance of the console logger information.
- This will be used when a mode has changed or a reset ocurred to verify all
+ This will be used when a mode has changed or a reset occurred to verify all
history buffers.
**/
EFI_STATUS
diff --git a/ShellPkg/Application/Shell/FileHandleWrappers.h b/ShellPkg/Application/Shell/FileHandleWrappers.h
index 3398285d52f8..5d58bfb2f45c 100644
--- a/ShellPkg/Application/Shell/FileHandleWrappers.h
+++ b/ShellPkg/Application/Shell/FileHandleWrappers.h
@@ -20,17 +20,17 @@ typedef struct {
} SHELL_LINE_LOG;
///
-/// FILE sytle interfaces for StdIn.
+/// FILE styte interfaces for StdIn.
///
extern EFI_FILE_PROTOCOL FileInterfaceStdIn;
///
-/// FILE sytle interfaces for StdOut.
+/// FILE styte interfaces for StdOut.
///
extern EFI_FILE_PROTOCOL FileInterfaceStdOut;
///
-/// FILE sytle interfaces for StdErr.
+/// FILE styte interfaces for StdErr.
///
extern EFI_FILE_PROTOCOL FileInterfaceStdErr;
diff --git a/ShellPkg/Application/Shell/Shell.h b/ShellPkg/Application/Shell/Shell.h
index 1227adc1eb63..e6eb150f57a5 100644
--- a/ShellPkg/Application/Shell/Shell.h
+++ b/ShellPkg/Application/Shell/Shell.h
@@ -135,7 +135,7 @@ typedef struct {
extern SHELL_INFO ShellInfoObject;
/**
- Converts the command line to it's post-processed form. this replaces variables and alias' per UEFI Shell spec.
+ Converts the command line to its post-processed form. this replaces variables and alias' per UEFI Shell spec.
@param[in,out] CmdLine pointer to the command line to update
diff --git a/ShellPkg/Application/Shell/ShellEnvVar.h b/ShellPkg/Application/Shell/ShellEnvVar.h
index 854a71ad9709..6c8552ee6437 100644
--- a/ShellPkg/Application/Shell/ShellEnvVar.h
+++ b/ShellPkg/Application/Shell/ShellEnvVar.h
@@ -43,14 +43,14 @@ IsVolatileEnv (
);
/**
- Delete a Non-Violatile environment variable.
+ Delete a Non-Volatile environment variable.
- This will use the Runtime Services call SetVariable to remove a non-violatile variable.
+ This will use the Runtime Services call SetVariable to remove a non-volatile variable.
@param EnvVarName The name of the environment variable in question
- @retval EFI_SUCCESS The variable was deleted sucessfully
- @retval other An error ocurred
+ @retval EFI_SUCCESS The variable was deleted successfully
+ @retval other An error occurred
@sa SetVariable
**/
#define SHELL_DELETE_ENVIRONMENT_VARIABLE(EnvVarName) \
@@ -61,16 +61,16 @@ IsVolatileEnv (
NULL))
/**
- Set a Non-Violatile environment variable.
+ Set a Non-Volatile environment variable.
- This will use the Runtime Services call SetVariable to set a non-violatile variable.
+ This will use the Runtime Services call SetVariable to set a non-volatile variable.
@param EnvVarName The name of the environment variable in question
@param BufferSize UINTN size of Buffer
@param Buffer Pointer to value to set variable to
- @retval EFI_SUCCESS The variable was changed sucessfully
- @retval other An error ocurred
+ @retval EFI_SUCCESS The variable was changed successfully
+ @retval other An error occurred
@sa SetVariable
**/
#define SHELL_SET_ENVIRONMENT_VARIABLE_NV(EnvVarName,BufferSize,Buffer) \
@@ -89,8 +89,8 @@ IsVolatileEnv (
@param BufferSize Pointer to the UINTN size of Buffer
@param Buffer Pointer buffer to get variable value into
- @retval EFI_SUCCESS The variable's value was retrieved sucessfully
- @retval other An error ocurred
+ @retval EFI_SUCCESS The variable's value was retrieved successfully
+ @retval other An error occurred
@sa SetVariable
**/
#define SHELL_GET_ENVIRONMENT_VARIABLE(EnvVarName,BufferSize,Buffer) \
@@ -110,8 +110,8 @@ IsVolatileEnv (
@param BufferSize Pointer to the UINTN size of Buffer
@param Buffer Pointer buffer to get variable value into
- @retval EFI_SUCCESS The variable's value was retrieved sucessfully
- @retval other An error ocurred
+ @retval EFI_SUCCESS The variable's value was retrieved successfully
+ @retval other An error occurred
@sa SetVariable
**/
#define SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(EnvVarName,Atts,BufferSize,Buffer) \
@@ -122,16 +122,16 @@ IsVolatileEnv (
Buffer))
/**
- Set a Violatile environment variable.
+ Set a Volatile environment variable.
- This will use the Runtime Services call SetVariable to set a violatile variable.
+ This will use the Runtime Services call SetVariable to set a volatile variable.
@param EnvVarName The name of the environment variable in question
@param BufferSize UINTN size of Buffer
@param Buffer Pointer to value to set variable to
- @retval EFI_SUCCESS The variable was changed sucessfully
- @retval other An error ocurred
+ @retval EFI_SUCCESS The variable was changed successfully
+ @retval other An error occurred
@sa SetVariable
**/
#define SHELL_SET_ENVIRONMENT_VARIABLE_V(EnvVarName,BufferSize,Buffer) \
@@ -147,7 +147,7 @@ IsVolatileEnv (
@param[in, out] List The pointer to pointer to LIST_ENTRY object for
storing this list.
- @retval EFI_SUCCESS the list was created sucessfully.
+ @retval EFI_SUCCESS the list was created successfully.
**/
EFI_STATUS
GetEnvironmentVariableList(
@@ -164,7 +164,7 @@ GetEnvironmentVariableList(
@param[in] List The pointer to LIST_ENTRY from
GetShellEnvVarList().
- @retval EFI_SUCCESS The list was Set sucessfully.
+ @retval EFI_SUCCESS The list was Set successfully.
**/
EFI_STATUS
SetEnvironmentVariableList(
diff --git a/ShellPkg/Application/Shell/ShellManParser.h b/ShellPkg/Application/Shell/ShellManParser.h
index 6fbad3aaaaec..04031e007fe9 100644
--- a/ShellPkg/Application/Shell/ShellManParser.h
+++ b/ShellPkg/Application/Shell/ShellManParser.h
@@ -19,7 +19,7 @@
information will be returned. If Sections is NULL, then all help text information
available will be returned.
- if BriefDesc is NULL, then the breif description will not be savedd seperatly,
+ if BriefDesc is NULL, then the breif description will not be savedd separately,
but placed first in the main HelpText.
@param[in] ManFileName Points to the NULL-terminated UEFI Shell MAN file name.
@@ -49,11 +49,11 @@ ProcessManFile(
/**
parses through the MAN file specified by SHELL_FILE_HANDLE and returns the
- detailed help for any sub section specified in the comma seperated list of
+ detailed help for any sub section specified in the comma separated list of
sections provided. If the end of the file or a .TH section is found then
return.
- Upon a sucessful return the caller is responsible to free the memory in *HelpText
+ Upon a successful return the caller is responsible to free the memory in *HelpText
@param[in] Handle FileHandle to read from
@param[in] Sections name of command's sub sections to find
@@ -62,8 +62,8 @@ ProcessManFile(
@param[in] Ascii TRUE if the file is ASCII, FALSE otherwise.
@retval EFI_OUT_OF_RESOURCES a memory allocation failed.
- @retval EFI_SUCCESS the section was found and its description sotred in
- an alloceted buffer.
+ @retval EFI_SUCCESS the section was found and its description stored in
+ an allocated buffer.
**/
EFI_STATUS
ManFileFindSections(
diff --git a/ShellPkg/Application/Shell/ShellParametersProtocol.h b/ShellPkg/Application/Shell/ShellParametersProtocol.h
index df0316a03091..398147c8bd4c 100644
--- a/ShellPkg/Application/Shell/ShellParametersProtocol.h
+++ b/ShellPkg/Application/Shell/ShellParametersProtocol.h
@@ -43,7 +43,7 @@ CreatePopulateInstallShellParametersProtocol (
);
/**
- frees all memory used by createion and installation of shell parameters protocol
+ frees all memory used by creation and installation of shell parameters protocol
and if there was an old version installed it will restore that one.
@param NewShellParameters the interface of EFI_SHELL_PARAMETERS_PROTOCOL that is
@@ -60,7 +60,7 @@ CleanUpShellParametersProtocol (
);
/**
- Funcion will replace the current Argc and Argv in the ShellParameters protocol
+ Function will replace the current Argc and Argv in the ShellParameters protocol
structure by parsing NewCommandLine. The current values are returned to the
user.
@@ -70,7 +70,7 @@ CleanUpShellParametersProtocol (
@param[out] OldArgv pointer to old list of parameters
@param[out] OldArgc pointer to old number of items in Argv list
- @retval EFI_SUCCESS operation was sucessful, Argv and Argc are valid
+ @retval EFI_SUCCESS operation was successful, Argv and Argc are valid
@retval EFI_OUT_OF_RESOURCES a memory allocation failed.
**/
EFI_STATUS
@@ -83,7 +83,7 @@ UpdateArgcArgv(
);
/**
- Funcion will replace the current Argc and Argv in the ShellParameters protocol
+ Function will replace the current Argc and Argv in the ShellParameters protocol
structure with Argv and Argc. The current values are de-allocated and the
OldArgv must not be deallocated by the caller.
@@ -108,7 +108,7 @@ typedef struct {
} SYSTEM_TABLE_INFO;
/**
- Funcion will replace the current StdIn and StdOut in the ShellParameters protocol
+ Function will replace the current StdIn and StdOut in the ShellParameters protocol
structure by parsing NewCommandLine. The current values are returned to the
user.
@@ -121,7 +121,7 @@ typedef struct {
@param[out] OldStdErr Pointer to old StdErr.
@param[out] SystemTableInfo Pointer to old system table information.
- @retval EFI_SUCCESS Operation was sucessful, Argv and Argc are valid.
+ @retval EFI_SUCCESS Operation was successful, Argv and Argc are valid.
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/
EFI_STATUS
@@ -135,7 +135,7 @@ UpdateStdInStdOutStdErr(
);
/**
- Funcion will replace the current StdIn and StdOut in the ShellParameters protocol
+ Function will replace the current StdIn and StdOut in the ShellParameters protocol
structure with StdIn and StdOut. The current values are de-allocated.
@param[in, out] ShellParameters Pointer to parameter structure to modify.
@@ -166,7 +166,7 @@ RestoreStdInStdOutStdErr (
@param[in, out] Argv pointer to array of strings; one for each parameter
@param[in, out] Argc pointer to number of strings in Argv array
- @return EFI_SUCCESS the operation was sucessful
+ @return EFI_SUCCESS the operation was successful
@return EFI_OUT_OF_RESOURCES a memory allocation failed.
**/
EFI_STATUS
@@ -188,13 +188,13 @@ ParseCommandLineToArgs(
function.
@param[in, out] Walker pointer to string of command line. Adjusted to
- reminaing command line on return
+ remaining command line on return
@param[in, out] TempParameter pointer to string of command line item extracted.
@param[in] Length Length of (*TempParameter) in bytes
@param[in] StripQuotation if TRUE then strip the quotation marks surrounding
the parameters.
- @return EFI_INALID_PARAMETER A required parameter was NULL or pointed to a NULL or empty string.
+ @return EFI_INVALID_PARAMETER A required parameter was NULL or pointed to a NULL or empty string.
@return EFI_NOT_FOUND A closing " could not be found on the specified string
**/
EFI_STATUS
diff --git a/ShellPkg/Application/Shell/ShellProtocol.h b/ShellPkg/Application/Shell/ShellProtocol.h
index dcef16e43748..472d98dba2e7 100644
--- a/ShellPkg/Application/Shell/ShellProtocol.h
+++ b/ShellPkg/Application/Shell/ShellProtocol.h
@@ -283,8 +283,8 @@ EfiShellBatchIsActive (
@param Attributes the File Attributes to use when creating a new file
@retval EFI_SUCCESS the file is open and FileHandle is valid
- @retval EFI_UNSUPPORTED the device path cotained non-path elements
- @retval other an error ocurred.
+ @retval EFI_UNSUPPORTED the device path contained non-path elements
+ @retval other an error occurred.
**/
EFI_STATUS
InternalOpenFileDevicePath(
@@ -309,7 +309,7 @@ InternalOpenFileDevicePath(
already exists and is non-volatile then EFI_INVALID_PARAMETER is returned.
@param FileName Pointer to NULL-terminated file path
- @param FileAttribs The new file's attrbiutes. the different attributes are
+ @param FileAttribs The new file's attributes. the different attributes are
described in EFI_FILE_PROTOCOL.Open().
@param FileHandle On return, points to the created file handle or directory's handle
@@ -734,7 +734,7 @@ EfiShellGetCurDir(
directory is changed.
@param Dir Points to the NULL-terminated directory on the device specified by FileSystem.
- @retval EFI_SUCCESS The operation was sucessful
+ @retval EFI_SUCCESS The operation was successful
**/
EFI_STATUS
EFIAPI
@@ -818,7 +818,7 @@ EfiShellIsRootShell(
If Alias is NULL, ReturnedData points to a ';'
delimited list of alias (e.g.
ReturnedData = "dir;del;copy;mfp") that is NULL-terminated.
- @retval NULL an error ocurred
+ @retval NULL an error occurred
@retval NULL Alias was not a valid Alias
**/
CONST CHAR16 *
@@ -915,7 +915,7 @@ InternalEfiShellSetEnv(
feature's enabled state was not known when the shell initially launched.
@retval EFI_SUCCESS The feature is enabled.
- @retval EFI_OUT_OF_RESOURCES There is not enough mnemory available.
+ @retval EFI_OUT_OF_RESOURCES There is not enough memory available.
**/
EFI_STATUS
InernalEfiShellStartMonitor(
diff --git a/ShellPkg/Application/Shell/ConsoleLogger.c b/ShellPkg/Application/Shell/ConsoleLogger.c
index 6c4e26265407..36ba3ac2254c 100644
--- a/ShellPkg/Application/Shell/ConsoleLogger.c
+++ b/ShellPkg/Application/Shell/ConsoleLogger.c
@@ -310,9 +310,9 @@ UpdateDisplayFromHistory(
StringSegment = &Screen[Column];
//
- // Find the first char with a different arrribute and make that temporarily NULL
+ // Find the first char with a different attribute and make that temporarily NULL
// so we can do fewer printout statements. (later) restore that one and we will
- // start at that collumn on the next loop.
+ // start at that column on the next loop.
//
StringSegmentEndChar = CHAR_NULL;
for ( StringSegmentEnd = StringSegment
@@ -395,7 +395,7 @@ UpdateDisplayFromHistory(
}
/**
- Reset the text output device hardware and optionaly run diagnostics
+ Reset the text output device hardware and optionally run diagnostics
@param This pointer to EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL
@param ExtendedVerification Indicates that a more extensive test may be performed
@@ -723,7 +723,7 @@ ConsoleLoggerPrintWithPageBreak(
ConsoleLoggerOutputStringSplit (LineStart, ConsoleInfo);
//
- // restore the temp NULL terminator to it's original character
+ // restore the temp NULL terminator to its original character
//
*((CHAR16*)(Walker+1)) = TempChar;
@@ -770,7 +770,7 @@ ConsoleLoggerPrintWithPageBreak(
ConsoleLoggerOutputStringSplit (LineStart, ConsoleInfo);
//
- // restore the temp NULL terminator to it's original character
+ // restore the temp NULL terminator to its original character
//
*((CHAR16*)(Walker+1)) = TempChar;
@@ -1189,7 +1189,7 @@ ConsoleLoggerEnableCursor (
@param[in] ConsoleInfo The pointer to the instance of the console logger information.
- This will be used when a mode has changed or a reset ocurred to verify all
+ This will be used when a mode has changed or a reset occurred to verify all
history buffers.
**/
EFI_STATUS
diff --git a/ShellPkg/Application/Shell/ConsoleWrappers.c b/ShellPkg/Application/Shell/ConsoleWrappers.c
index b573b53cf4f3..ec340de4e128 100644
--- a/ShellPkg/Application/Shell/ConsoleWrappers.c
+++ b/ShellPkg/Application/Shell/ConsoleWrappers.c
@@ -220,7 +220,7 @@ CloseSimpleTextInOnFile(
}
/**
- Reset the text output device hardware and optionaly run diagnostics.
+ Reset the text output device hardware and optionally run diagnostics.
@param This pointer to EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL
@param ExtendedVerification Indicates that a more extensive test may be performed
diff --git a/ShellPkg/Application/Shell/FileHandleWrappers.c b/ShellPkg/Application/Shell/FileHandleWrappers.c
index 2d7bd7bec67e..a622a763f85e 100644
--- a/ShellPkg/Application/Shell/FileHandleWrappers.c
+++ b/ShellPkg/Application/Shell/FileHandleWrappers.c
@@ -517,7 +517,7 @@ FileInterfaceStdInRead(
gST->ConOut->QueryMode (gST->ConOut, gST->ConOut->Mode->Mode, &TotalColumn, &TotalRow);
//
- // Limit the line length to the buffer size or the minimun size of the
+ // Limit the line length to the buffer size or the minimum size of the
// screen. (The smaller takes effect)
//
MaxStr = TotalColumn * (TotalRow - 1) - StartColumn;
@@ -865,7 +865,7 @@ FileInterfaceStdInRead(
//
if (Key.UnicodeChar != CHAR_BACKSPACE && !(Key.UnicodeChar == 0 && Key.ScanCode == SCAN_DELETE)) {
//
- // Calulate row and column of the tail of current string
+ // Calculate row and column of the tail of current string
//
TailRow = Row + (StringLen - StringCurPos + Column + OutputLength) / TotalColumn;
TailColumn = (StringLen - StringCurPos + Column + OutputLength) % TotalColumn;
@@ -932,7 +932,7 @@ FileInterfaceStdInRead(
}
//
-// FILE sytle interfaces for StdIn/StdOut/StdErr
+// FILE style interfaces for StdIn/StdOut/StdErr
//
EFI_FILE_PROTOCOL FileInterfaceStdIn = {
EFI_FILE_REVISION,
@@ -1069,7 +1069,7 @@ FileInterfaceEnvClose(
) {
((CHAR16*)NewBuffer)[TotalSize / sizeof (CHAR16) - 3] = CHAR_NULL;
//
- // If the NewBuffer end with \r\n\0, We will repace '\r' by '\0' and then update TotalSize.
+ // If the NewBuffer end with \r\n\0, We will replace '\r' by '\0' and then update TotalSize.
//
TotalSize -= sizeof(CHAR16) * 2;
}
diff --git a/ShellPkg/Application/Shell/Shell.c b/ShellPkg/Application/Shell/Shell.c
index d16adae0ea30..a5563070972e 100644
--- a/ShellPkg/Application/Shell/Shell.c
+++ b/ShellPkg/Application/Shell/Shell.c
@@ -1081,7 +1081,7 @@ ProcessCommandLine(
}
}
//
- // If an argumnent contains a space, then add double quotes before the argument
+ // If an argument contains a space, then add double quotes before the argument
//
if (StrStr (gEfiShellParametersProtocol->Argv[LoopVar], L" ") != NULL) {
StrnCatGrow(&ShellInfoObject.ShellInitSettings.FileOptions,
@@ -1102,7 +1102,7 @@ ProcessCommandLine(
return (EFI_OUT_OF_RESOURCES);
}
//
- // If an argumnent contains a space, then add double quotes after the argument
+ // If an argument contains a space, then add double quotes after the argument
//
if (StrStr (gEfiShellParametersProtocol->Argv[LoopVar], L" ") != NULL) {
StrnCatGrow(&ShellInfoObject.ShellInitSettings.FileOptions,
@@ -1176,7 +1176,7 @@ LocateStartupScript (
}
//
- // Try to find 'Startup.nsh' in the execution path defined by the envrionment variable PATH.
+ // Try to find 'Startup.nsh' in the execution path defined by the environment variable PATH.
//
if ((StartupScriptPath == NULL) || EFI_ERROR (ShellIsFile (StartupScriptPath))) {
SHELL_FREE_NON_NULL (StartupScriptPath);
@@ -2251,7 +2251,7 @@ SetLastError(
}
/**
- Converts the command line to it's post-processed form. this replaces variables and alias' per UEFI Shell spec.
+ Converts the command line to its post-processed form. this replaces variables and alias' per UEFI Shell spec.
@param[in,out] CmdLine pointer to the command line to update
diff --git a/ShellPkg/Application/Shell/ShellEnvVar.c b/ShellPkg/Application/Shell/ShellEnvVar.c
index dbeb8216986a..04fed3bf9141 100644
--- a/ShellPkg/Application/Shell/ShellEnvVar.c
+++ b/ShellPkg/Application/Shell/ShellEnvVar.c
@@ -118,7 +118,7 @@ FreeEnvironmentVariableList(
@param[in, out] ListHead The pointer to pointer to LIST ENTRY object for
storing this list.
- @retval EFI_SUCCESS the list was created sucessfully.
+ @retval EFI_SUCCESS the list was created successfully.
**/
EFI_STATUS
GetEnvironmentVariableList(
@@ -233,7 +233,7 @@ GetEnvironmentVariableList(
@param[in] ListHead The pointer to LIST_ENTRY from
GetShellEnvVarList().
- @retval EFI_SUCCESS the list was Set sucessfully.
+ @retval EFI_SUCCESS the list was Set successfully.
**/
EFI_STATUS
SetEnvironmentVariableList(
@@ -266,7 +266,7 @@ SetEnvironmentVariableList(
FreeEnvironmentVariableList(&VarList.Link);
//
- // set all the variables fron the list
+ // set all the variables from the list
//
for ( Node = (ENV_VAR_LIST*)GetFirstNode(ListHead)
; !IsNull(ListHead, &Node->Link)
@@ -479,7 +479,7 @@ ShellAddEnvVarToList (
}
//
- // If the environment varialbe key doesn't exist in list just insert
+ // If the environment variable key doesn't exist in list just insert
// a new node.
//
LocalKey = AllocateCopyPool (StrSize(Key), Key);
diff --git a/ShellPkg/Application/Shell/ShellManParser.c b/ShellPkg/Application/Shell/ShellManParser.c
index 4d5a5668aa15..d5a85cb8cc3f 100644
--- a/ShellPkg/Application/Shell/ShellManParser.c
+++ b/ShellPkg/Application/Shell/ShellManParser.c
@@ -179,12 +179,12 @@ SearchPathForFile(
}
/**
- parses through the MAN file specified by SHELL_FILE_HANDLE and returns the
- detailed help for any sub section specified in the comma seperated list of
+ Parses through the MAN file specified by SHELL_FILE_HANDLE and returns the
+ detailed help for any sub section specified in the comma separated list of
sections provided. If the end of the file or a .TH section is found then
return.
- Upon a sucessful return the caller is responsible to free the memory in *HelpText
+ Upon a successful return the caller is responsible to free the memory in *HelpText
@param[in] Handle FileHandle to read from
@param[in] Sections name of command's sub sections to find
@@ -193,8 +193,8 @@ SearchPathForFile(
@param[in] Ascii TRUE if the file is ASCII, FALSE otherwise.
@retval EFI_OUT_OF_RESOURCES a memory allocation failed.
- @retval EFI_SUCCESS the section was found and its description sotred in
- an alloceted buffer.
+ @retval EFI_SUCCESS the section was found and its description stored in
+ an allocated buffer.
**/
EFI_STATUS
ManFileFindSections(
@@ -296,11 +296,11 @@ ManFileFindSections(
/**
Parses a line from a MAN file to see if it is the Title Header. If it is, then
if the "Brief Description" is desired, allocate a buffer for it and return a
- copy. Upon a sucessful return the caller is responsible to free the memory in
+ copy. Upon a successful return the caller is responsible to free the memory in
*BriefDesc
Uses a simple state machine that allows "unlimited" whitespace before and after the
- ".TH", compares Command and the MAN file commnd name without respect to case, and
+ ".TH", compares Command and the MAN file command name without respect to case, and
allows "unlimited" whitespace and '0' and '1' characters before the Short Description.
The PCRE regex describing this functionality is: ^\s*\.TH\s+(\S)\s[\s01]*(.*)$
where group 1 is the Command Name and group 2 is the Short Description.
@@ -421,11 +421,11 @@ IsTitleHeader(
}
/**
- parses through the MAN file specified by SHELL_FILE_HANDLE and returns the
+ Parses through the MAN file specified by SHELL_FILE_HANDLE and returns the
"Brief Description" for the .TH section as specified by Command. If the
command section is not found return EFI_NOT_FOUND.
- Upon a sucessful return the caller is responsible to free the memory in *BriefDesc
+ Upon a successful return the caller is responsible to free the memory in *BriefDesc
@param[in] Handle FileHandle to read from
@param[in] Command name of command's section to find as entered on the
@@ -512,7 +512,7 @@ ManFileFindTitleSection(
information will be returned. If Sections is NULL, then all help text information
available will be returned.
- if BriefDesc is NULL, then the breif description will not be savedd seperatly,
+ if BriefDesc is NULL, then the breif description will not be saved separately,
but placed first in the main HelpText.
@param[in] ManFileName Points to the NULL-terminated UEFI Shell MAN file name.
diff --git a/ShellPkg/Application/Shell/ShellParametersProtocol.c b/ShellPkg/Application/Shell/ShellParametersProtocol.c
index bcd8f0ae2112..ef3966d3b08f 100644
--- a/ShellPkg/Application/Shell/ShellParametersProtocol.c
+++ b/ShellPkg/Application/Shell/ShellParametersProtocol.c
@@ -69,13 +69,13 @@ FindEndOfParameter(
This will also remove all remaining ^ characters after processing.
@param[in, out] Walker pointer to string of command line. Adjusted to
- reminaing command line on return
+ remaining command line on return
@param[in, out] TempParameter pointer to string of command line item extracted.
@param[in] Length buffer size of TempParameter.
@param[in] StripQuotation if TRUE then strip the quotation marks surrounding
the parameters.
- @return EFI_INALID_PARAMETER A required parameter was NULL or pointed to a NULL or empty string.
+ @return EFI_INVALID_PARAMETER A required parameter was NULL or pointed to a NULL or empty string.
@return EFI_NOT_FOUND A closing " could not be found on the specified string
**/
EFI_STATUS
@@ -126,7 +126,7 @@ DEBUG_CODE_END();
StrnCpyS(*TempParameter, Length / sizeof(CHAR16), (*Walker), NextDelim - *Walker);
//
- // Add a CHAR_NULL if we didnt get one via the copy
+ // Add a CHAR_NULL if we didn't get one via the copy
//
if (*NextDelim != CHAR_NULL) {
(*TempParameter)[NextDelim - *Walker] = CHAR_NULL;
@@ -184,7 +184,7 @@ DEBUG_CODE_END();
@param[in, out] Argv pointer to array of strings; one for each parameter
@param[in, out] Argc pointer to number of strings in Argv array
- @return EFI_SUCCESS the operation was sucessful
+ @return EFI_SUCCESS the operation was successful
@return EFI_OUT_OF_RESOURCES a memory allocation failed.
**/
EFI_STATUS
@@ -416,7 +416,7 @@ CreatePopulateInstallShellParametersProtocol (
}
/**
- frees all memory used by createion and installation of shell parameters protocol
+ frees all memory used by creation and installation of shell parameters protocol
and if there was an old version installed it will restore that one.
@param NewShellParameters the interface of EFI_SHELL_PARAMETERS_PROTOCOL that is
@@ -466,7 +466,7 @@ CleanUpShellParametersProtocol (
}
/**
- Determin if a file name represents a unicode file.
+ Determine if a file name represents a unicode file.
@param[in] FileName Pointer to the filename to open.
@@ -526,7 +526,7 @@ StripQuotes (
}
/**
- Calcualte the 32-bit CRC in a EFI table using the service provided by the
+ Calculate the 32-bit CRC in a EFI table using the service provided by the
gRuntime service.
@param Hdr Pointer to an EFI standard header
@@ -651,7 +651,7 @@ WriteFileTag (
/**
- Funcion will replace the current StdIn and StdOut in the ShellParameters protocol
+ Function will replace the current StdIn and StdOut in the ShellParameters protocol
structure by parsing NewCommandLine. The current values are returned to the
user.
@@ -664,7 +664,7 @@ WriteFileTag (
@param[out] OldStdErr Pointer to old StdErr.
@param[out] SystemTableInfo Pointer to old system table information.
- @retval EFI_SUCCESS Operation was sucessful, Argv and Argc are valid.
+ @retval EFI_SUCCESS Operation was successful, Argv and Argc are valid.
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/
EFI_STATUS
@@ -1257,7 +1257,7 @@ UpdateStdInStdOutStdErr(
}
/**
- Funcion will replace the current StdIn and StdOut in the ShellParameters protocol
+ Function will replace the current StdIn and StdOut in the ShellParameters protocol
structure with StdIn and StdOut. The current values are de-allocated.
@param[in, out] ShellParameters Pointer to parameter structure to modify.
@@ -1327,7 +1327,7 @@ RestoreStdInStdOutStdErr (
return (EFI_SUCCESS);
}
/**
- Funcion will replace the current Argc and Argv in the ShellParameters protocol
+ Function will replace the current Argc and Argv in the ShellParameters protocol
structure by parsing NewCommandLine. The current values are returned to the
user.
@@ -1339,7 +1339,7 @@ RestoreStdInStdOutStdErr (
@param[out] OldArgv Pointer to old list of parameters.
@param[out] OldArgc Pointer to old number of items in Argv list.
- @retval EFI_SUCCESS Operation was sucessful, Argv and Argc are valid.
+ @retval EFI_SUCCESS Operation was successful, Argv and Argc are valid.
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/
EFI_STATUS
@@ -1375,7 +1375,7 @@ UpdateArgcArgv(
}
/**
- Funcion will replace the current Argc and Argv in the ShellParameters protocol
+ Function will replace the current Argc and Argv in the ShellParameters protocol
structure with Argv and Argc. The current values are de-allocated and the
OldArgv must not be deallocated by the caller.
diff --git a/ShellPkg/Application/Shell/ShellProtocol.c b/ShellPkg/Application/Shell/ShellProtocol.c
index f0362a42d893..4e639fe35e4f 100644
--- a/ShellPkg/Application/Shell/ShellProtocol.c
+++ b/ShellPkg/Application/Shell/ShellProtocol.c
@@ -96,7 +96,7 @@ InternalShellProtocolIsSimpleFileSystemPresent(
/**
This function creates a mapping for a device path.
- If both DeviecPath and Mapping are NULL, this will reset the mapping to default values.
+ If both DevicePath and Mapping are NULL, this will reset the mapping to default values.
@param DevicePath Points to the device path. If this is NULL and Mapping points to a valid mapping,
then the mapping will be deleted.
@@ -152,7 +152,7 @@ EfiShellSetMap(
} // for loop
//
- // We didnt find one to delete
+ // We didn't find one to delete
//
return (EFI_NOT_FOUND);
}
@@ -232,7 +232,7 @@ EfiShellGetDevicePathFromMap(
device path. If there is an exact match, the mapping is returned and *DevicePath
points to the end-of-device-path node.
- If there are multiple map names they will be semi-colon seperated in the
+ If there are multiple map names they will be semi-colon separated in the
NULL-terminated string.
@param DevicePath On entry, points to a device path pointer. On
@@ -910,8 +910,8 @@ EfiShellBatchIsActive (
@param Attributes the File Attributes to use when creating a new file.
@retval EFI_SUCCESS the file is open and FileHandle is valid
- @retval EFI_UNSUPPORTED the device path cotained non-path elements
- @retval other an error ocurred.
+ @retval EFI_UNSUPPORTED the device path contained non-path elements
+ @retval other an error occurred.
**/
EFI_STATUS
InternalOpenFileDevicePath(
@@ -946,7 +946,7 @@ InternalOpenFileDevicePath(
Handle1 = ConvertShellHandleToEfiFileProtocol(ShellHandle);
if (Handle1 != NULL) {
//
- // chop off the begining part before the file system part...
+ // chop off the beginning part before the file system part...
//
///@todo BlockIo?
Status = gBS->LocateDevicePath(&gEfiSimpleFileSystemProtocolGuid,
@@ -1064,14 +1064,14 @@ InternalOpenFileDevicePath(
already exists and is non-volatile then EFI_INVALID_PARAMETER is returned.
@param FileName Pointer to NULL-terminated file path
- @param FileAttribs The new file's attrbiutes. the different attributes are
+ @param FileAttribs The new file's attributes. the different attributes are
described in EFI_FILE_PROTOCOL.Open().
@param FileHandle On return, points to the created file handle or directory's handle
@retval EFI_SUCCESS The file was opened. FileHandle points to the new file's handle.
@retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.
@retval EFI_UNSUPPORTED could not open the file path
- @retval EFI_NOT_FOUND the specified file could not be found on the devide, or could not
+ @retval EFI_NOT_FOUND the specified file could not be found on the device, or could not
file the file system on the device.
@retval EFI_NO_MEDIA the device has no medium.
@retval EFI_MEDIA_CHANGED The device has a different medium in it or the medium is no
@@ -1908,7 +1908,7 @@ typedef struct {
@param[in] Node The node to copy from.
@param[in] Save TRUE to set Node->Handle to NULL, FALSE otherwise.
- @retval NULL a memory allocation error ocurred
+ @retval NULL a memory allocation error occurred
@return != NULL a pointer to the new node
**/
EFI_SHELL_FILE_INFO*
@@ -1960,7 +1960,7 @@ InternalDuplicateShellFileInfo(
@param[in] Handle Handle member initial value.
@param[in] Info Info struct to copy.
- @retval NULL An error ocurred.
+ @retval NULL An error occurred.
@return a pointer to the newly allocated structure.
**/
EFI_SHELL_FILE_INFO *
@@ -2120,7 +2120,7 @@ EfiShellFindFilesInDir(
//
ShellFileListItem = CreateAndPopulateShellFileInfo(
BasePath,
- EFI_SUCCESS, // success since we didnt fail to open it...
+ EFI_SUCCESS, // success since we didn't fail to open it...
FileInfo->FileName,
NULL, // no handle since not open
FileInfo);
@@ -2706,7 +2706,7 @@ EfiShellGetEnvEx(
Status = SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(Name, Attributes, &Size, Buffer);
}
//
- // we didnt get it (might not exist)
+ // we didn't get it (might not exist)
// free the memory if we allocated any and return NULL
//
if (EFI_ERROR(Status)) {
@@ -2927,7 +2927,7 @@ EfiShellGetCurDir(
directory is changed.
@param Dir Points to the NULL-terminated directory on the device specified by FileSystem.
- @retval EFI_SUCCESS The operation was sucessful
+ @retval EFI_SUCCESS The operation was successful
@retval EFI_NOT_FOUND The file system could not be found
**/
EFI_STATUS
@@ -3179,12 +3179,12 @@ EfiShellIsRootShell(
}
/**
- function to return a semi-colon delimeted list of all alias' in the current shell
+ function to return a semi-colon delimited list of all alias' in the current shell
up to caller to free the memory.
@retval NULL No alias' were found
- @retval NULL An error ocurred getting alias'
+ @retval NULL An error occurred getting alias'
@return !NULL a list of all alias'
**/
CHAR16 *
@@ -3287,7 +3287,7 @@ ToLower (
If Alias is NULL, ReturnedData points to a ';'
delimited list of alias (e.g.
ReturnedData = "dir;del;copy;mfp") that is NULL-terminated.
- @retval NULL an error ocurred
+ @retval NULL an error occurred
@retval NULL Alias was not a valid Alias
**/
CONST CHAR16 *
@@ -3612,7 +3612,7 @@ CreatePopulateInstallShellProtocol (
(VOID*)(&mShellProtocol));
if (!EFI_ERROR(Status)) {
//
- // we reinstalled sucessfully. log this so we can reverse it later.
+ // we reinstalled successfully. log this so we can reverse it later.
//
//
@@ -3759,7 +3759,7 @@ NotificationFunction(
feature's enabled state was not known when the shell initially launched.
@retval EFI_SUCCESS The feature is enabled.
- @retval EFI_OUT_OF_RESOURCES There is not enough mnemory available.
+ @retval EFI_OUT_OF_RESOURCES There is not enough memory available.
**/
EFI_STATUS
InernalEfiShellStartMonitor(
diff --git a/ShellPkg/Application/ShellCTestApp/README.txt b/ShellPkg/Application/ShellCTestApp/README.txt
index 02594e0d1208..d788d3ef62a9 100644
--- a/ShellPkg/Application/ShellCTestApp/README.txt
+++ b/ShellPkg/Application/ShellCTestApp/README.txt
@@ -1,5 +1,5 @@
TestArgv.nsh is a very simple shell script to test how the interpreter parses
the parameters. It uses ShellCTestApp.efi to dump the parameters passed from the
-intepreter.
+interpreter.
TestArgv.log is the desired output created using "TestArgv.nsh > TestArgv.log".
--
2.21.1
next prev parent reply other threads:[~2020-02-07 1:41 UTC|newest]
Thread overview: 84+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-07 1:07 [PATCH v3 00/78] Fix a bunch of typos (part 1) Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 01/78] CryptoPkg/OpensslLib: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 02/78] EmbeddedPkg/VirtualKeyboard: Fix a typo in EFI_INVALID_PARAMETER Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 03/78] EmbeddedPkg/VirtualKeyboard: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 04/78] EmulatorPkg/Sec: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 05/78] EmulatorPkg/Unix: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 06/78] EmulatorPkg/Win: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 07/78] FatPkg/EnhancedFatDxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 08/78] FatPkg/FatPei: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 09/78] MdeModulePkg/Application: Improve French translation Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 10/78] MdeModulePkg/Application: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 11/78] MdeModulePkg/Bus/Ata: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 12/78] MdeModulePkg/Bus/I2c: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 13/78] MdeModulePkg/Bus/Isa: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 14/78] MdeModulePkg/Bus/Scsi: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 15/78] MdeModulePkg/Bus/Sd: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 16/78] MdeModulePkg/Core/Pei: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 17/78] MdeModulePkg/Core/PiSmmCore: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 18/78] MdeModulePkg/UsbBusDxe: Fix a typo Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 19/78] MdeModulePkg/UsbMass: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 20/78] MdeModulePkg/UsbMouse: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 21/78] MdeModulePkg/UsbBus: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 22/78] MdeModulePkg/Usb: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 23/78] MdePkg/IndustryStandard: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 24/78] MdePkg/Library/Dxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 25/78] MdePkg/Library/Pci: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 26/78] MdePkg/Library/Smm: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 27/78] MdePkg/Ppi: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 28/78] MdePkg/Register: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 29/78] NetworkPkg: Fix a typo Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 30/78] NetworkPkg/ArpDxe: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 31/78] NetworkPkg/Dhcp4Dxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 32/78] NetworkPkg/Dhcp6Dxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 33/78] NetworkPkg/DnsDxe: Fix a typo Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 34/78] NetworkPkg/DnsDxe: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 35/78] NetworkPkg/DpcDxe: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 36/78] NetworkPkg/HttpBootDxe: Fix a typo in variable name Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 37/78] NetworkPkg/HttpBootDxe: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 38/78] NetworkPkg/HttpDxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 39/78] NetworkPkg/Ip4Dxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 40/78] NetworkPkg/Ip6Dxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 41/78] NetworkPkg/IScsiDxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 42/78] NetworkPkg/Library: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 43/78] NetworkPkg/MnpDxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 44/78] NetworkPkg/Mtftp4Dxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 45/78] NetworkPkg/Mtftp6Dxe: " Philippe Mathieu-Daudé
2020-02-07 1:07 ` [PATCH v3 46/78] NetworkPkg/SnpDxe: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 47/78] NetworkPkg/TcpDxe/Sock: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 48/78] NetworkPkg/TcpDxe/Tcp: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 49/78] NetworkPkg/Tls: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 50/78] NetworkPkg/Udp4Dxe: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 51/78] NetworkPkg/Udp6Dxe: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 52/78] NetworkPkg/UefiPxeBcDxe: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 53/78] NetworkPkg/VlanConfigDxe: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 54/78] OvmfPkg/Acpi: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 55/78] OvmfPkg/Csm: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 56/78] OvmfPkg/Csm/LegacyBios: Fix a typo Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 57/78] OvmfPkg/Qemu: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 58/78] OvmfPkg/Virtio: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 59/78] OvmfPkg/Xen: Fix a typo Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 60/78] OvmfPkg/Xen: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 61/78] PcAtChipsetPkg: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 62/78] SecurityPkg: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 63/78] SecurityPkg/Hash2DxeCrypto: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 64/78] SecurityPkg/Library/Tpm: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 65/78] SecurityPkg/Tcg: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 66/78] SecurityPkg/VariableAuthenticated: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` Philippe Mathieu-Daudé [this message]
2020-02-07 1:08 ` [PATCH v3 68/78] ShellPkg/DynamicCommand: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 69/78] SignedCapsulePkg: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 70/78] SignedCapsulePkg/Universal: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 71/78] SourceLevelDebugPkg/DebugAgent: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 72/78] SourceLevelDebugPkg/DebugCommunicationLib: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 73/78] SourceLevelDebugPkg: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 74/78] StandaloneMmPkg: Fix a typo Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 75/78] StandaloneMmPkg: Fix few typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 76/78] UefiCpuPkg/CpuDxe: " Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 77/78] UefiCpuPkg/PiSmm: Fix various typos Philippe Mathieu-Daudé
2020-02-07 1:08 ` [PATCH v3 78/78] UefiCpuPkg/Smm: " Philippe Mathieu-Daudé
2020-02-07 10:51 ` [PATCH v3 00/78] Fix a bunch of typos (part 1) Laszlo Ersek
2020-02-10 22:54 ` [edk2-devel] " Laszlo Ersek
2020-02-11 12:12 ` Philippe Mathieu-Daudé
2020-02-12 12:02 ` Laszlo Ersek
2020-02-12 17:01 ` Cœur
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200207010831.9046-68-philmd@redhat.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox