From 3b28e7448de6ef8ed94036bffe23c67dc20a7aff Mon Sep 17 00:00:00 2001 From: Gary Lin Date: Wed, 19 Oct 2016 15:01:25 +0800 Subject: MdeModulePkg/Library: Fix typos in comments and variables - servity -> severity - TURE -> TRUE - contiue -> continue - Pepresentation -> Representation - suported -> supported - opints -> points - sucessfully -> successfully - hexidecimal -> hexadecimal - Pacakge -> Package - Libary -> Library - successull -> successfully - reseting -> resetting - Retrive -> Retrieve - dirver -> driver - availible -> available - chracter -> character - seperator -> separator Cc: Feng Tian Cc: Star Zeng Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Gary Lin Reviewed-by: Feng Tian Reviewed-by: Star Zeng --- MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'MdeModulePkg/Library/DxeHttpLib') diff --git a/MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c b/MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c index 727cc428f4..a4579bf043 100644 --- a/MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c +++ b/MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c @@ -1430,10 +1430,10 @@ HttpFreeMsgParser ( /** - Get the next string, which is distinguished by specified seperator. + Get the next string, which is distinguished by specified separator. @param[in] String Pointer to the string. - @param[in] Seperator Specified seperator used to distinguish where is the beginning + @param[in] Separator Specified separator used to distinguish where is the beginning of next string. @return Pointer to the next string. @@ -1444,7 +1444,7 @@ CHAR8 * EFIAPI AsciiStrGetNextToken ( IN CONST CHAR8 *String, - IN CHAR8 Seperator + IN CHAR8 Separator ) { CONST CHAR8 *Token; @@ -1454,7 +1454,7 @@ AsciiStrGetNextToken ( if (*Token == 0) { return NULL; } - if (*Token == Seperator) { + if (*Token == Separator) { return (CHAR8 *)(Token + 1); } Token++; -- cgit v1.2.3