Shellpkg: Fix spelling errors in Shell.c/Shell.h comments

This patch fixes spelling errors in comments. No functional change.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Joe Peterson <joe.peterson@intel.com>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16816 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Joe Peterson
2015-02-06 22:25:05 +00:00
committed by jcarsey
parent a8f98806ed
commit d08a546471
2 changed files with 36 additions and 36 deletions

View File

@ -139,7 +139,7 @@ typedef enum {
@retval EFI_SUCCESS The operation was successful
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
@return some other error occured
@return some other error occurred
**/
EFI_STATUS
EFIAPI
@ -161,7 +161,7 @@ SetLastError(
/**
Sets all the alias' that were registered with the ShellCommandLib library.
@retval EFI_SUCCESS all init commands were run sucessfully.
@retval EFI_SUCCESS all init commands were run successfully.
**/
EFI_STATUS
EFIAPI
@ -175,10 +175,10 @@ SetBuiltInAlias(
loaded image protocol installed on it. the FilePath will point to the device path
for the file that was loaded.
@param[in, out] DevPath on a sucessful return the device path to the loaded image
@param[in, out] FilePath on a sucessful return the device path to the file
@param[in, out] DevPath on a successful return the device path to the loaded image
@param[in, out] FilePath on a successful return the device path to the file
@retval EFI_SUCCESS the 2 device paths were sucessfully returned.
@retval EFI_SUCCESS the 2 device paths were successfully returned.
@return other a error from gBS->HandleProtocol
@sa HandleProtocol
@ -294,7 +294,7 @@ RunCommand(
);
/**
Function determins if the CommandName COULD be a valid command. It does not determine whether
Function determines if the CommandName COULD be a valid command. It does not determine whether
this is a valid command. It only checks for invalid characters.
@param[in] CommandName The name to check
@ -314,7 +314,7 @@ IsValidCommandName(
@param[in] Handle The handle to the already opened file.
@param[in] Name The name of the script file.
@retval EFI_SUCCESS the script completed sucessfully
@retval EFI_SUCCESS the script completed successfully
**/
EFI_STATUS
EFIAPI
@ -331,7 +331,7 @@ RunScriptFileHandle (
@param[in] CmdLine the command line to run.
@param[in] ParamProtocol the shell parameters protocol pointer
@retval EFI_SUCCESS the script completed sucessfully
@retval EFI_SUCCESS the script completed successfully
**/
EFI_STATUS
EFIAPI
@ -343,7 +343,7 @@ RunScriptFile (
);
/**
Return the pointer to the first occurance of any character from a list of characters.
Return the pointer to the first occurrence of any character from a list of characters.
@param[in] String the string to parse
@param[in] CharacterList the list of character to look for