diff options
author | Hao Wu <hao.a.wu@intel.com> | 2016-01-06 01:11:00 +0000 |
---|---|---|
committer | hwu1225 <hwu1225@Edk2> | 2016-01-06 01:11:00 +0000 |
commit | 8a1c4a8cf997524173179bcc1e4021ef9e33f829 (patch) | |
tree | 933adf5bc6582695afa70cc24c30151b303c5493 | |
parent | ab91c9a8ff0b6c078fb9326b30e8d60cd74f1012 (diff) | |
download | edk2-platforms-8a1c4a8cf997524173179bcc1e4021ef9e33f829.tar.xz |
MdeModulePkg DxeHttpLib: Fix typos in function descriptions
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Hao Wu <hao.a.wu@intel.com>
Reviewed-by: Feng Tian <feng.tian@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19597 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c b/MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c index 143baabdec..040d874063 100644 --- a/MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c +++ b/MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c @@ -134,7 +134,7 @@ UriPercentDecode ( }
/**
- This function return the updated state accroding to the input state and next character of
+ This function return the updated state according to the input state and next character of
the authority.
@param[in] Char Next character.
@@ -299,7 +299,7 @@ NetHttpParseAuthority ( }
/**
- This function return the updated state accroding to the input state and next character of a URL.
+ This function return the updated state according to the input state and next character of a URL.
@param[in] Char Next character.
@param[in] State Current value of the parser state machine.
@@ -1056,7 +1056,7 @@ HttpInitMsgParser ( Parser->State = BodyParserBodyStart;
//
- // Determine the message length accroding to RFC 2616.
+ // Determine the message length according to RFC 2616.
// 1. Check whether the message "MUST NOT" have a message-body.
//
Parser->IgnoreBody = HttpIoNoMessageBody (Method, StatusCode);
|