diff options
author | Antoine Coeur <Coeur@gmx.fr> | 2019-02-11 11:09:44 +0800 |
---|---|---|
committer | Jian J Wang <jian.j.wang@intel.com> | 2019-02-11 11:09:44 +0800 |
commit | 2a784a2cc356df5a8958afe88bc7e844dc0fb7cc (patch) | |
tree | e7be4268f647ca9c6954fc1ef54c7a151b64aa03 /CryptoPkg/Library | |
parent | 7a90895306acbf970de87e8020f8c6dc22ce8fb3 (diff) | |
download | edk2-2a784a2cc356df5a8958afe88bc7e844dc0fb7cc.tar.gz edk2-2a784a2cc356df5a8958afe88bc7e844dc0fb7cc.tar.bz2 edk2-2a784a2cc356df5a8958afe88bc7e844dc0fb7cc.zip |
CryptoPkg: Fix various typos
Fix various typos in CryptoPkg.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Coeur <coeur@gmx.fr>
Reviewed-by: Ye Ting <ting.ye@intel.com>
Reviewed-by: Jian J Wang <jian.j.wang@intel.com>
Diffstat (limited to 'CryptoPkg/Library')
-rw-r--r-- | CryptoPkg/Library/BaseCryptLib/Pk/CryptTs.c | 2 | ||||
-rw-r--r-- | CryptoPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/CryptoPkg/Library/BaseCryptLib/Pk/CryptTs.c b/CryptoPkg/Library/BaseCryptLib/Pk/CryptTs.c index d63c23df09..540c5715cb 100644 --- a/CryptoPkg/Library/BaseCryptLib/Pk/CryptTs.c +++ b/CryptoPkg/Library/BaseCryptLib/Pk/CryptTs.c @@ -142,7 +142,7 @@ IMPLEMENT_ASN1_FUNCTIONS (TS_TST_INFO) @param[in] Asn1Time Pointer to the ASN.1 GeneralizedTime to be converted.
@param[out] SigningTime Return the corresponding EFI Time.
- @retval TRUE The time convertion succeeds.
+ @retval TRUE The time conversion succeeds.
@retval FALSE Invalid parameters.
**/
diff --git a/CryptoPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c b/CryptoPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c index 9510a4a383..80f5c2578e 100644 --- a/CryptoPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c +++ b/CryptoPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c @@ -84,14 +84,14 @@ QuickSortWorker ( }
}
//
- // Swap pivot to it's final position (NextSwapLocaiton)
+ // Swap pivot to its final position (NextSwapLocation)
//
CopyMem (Buffer, Pivot, ElementSize);
CopyMem (Pivot, (UINT8 *)BufferToSort + (NextSwapLocation * ElementSize), ElementSize);
CopyMem ((UINT8 *)BufferToSort + (NextSwapLocation * ElementSize), Buffer, ElementSize);
//
- // Now recurse on 2 paritial lists. Neither of these will have the 'pivot' element.
+ // Now recurse on 2 partial lists. Neither of these will have the 'pivot' element.
// IE list is sorted left half, pivot element, sorted right half...
//
QuickSortWorker (
|