ShellPkg: Fix typo in ShellPkg.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Qiu Shumin <shumin.qiu@intel.com>
Reviewed-by: Jaben Carsey <Jaben.carsey@intel.com>
Reviewed-by: Bruce Cran <bruce.cran@gmail.com>



git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17056 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Qiu Shumin
2015-03-17 01:58:10 +00:00
committed by shenshushi
parent 47e57f4f5f
commit 85efb9d860

View File

@ -2,7 +2,7 @@
The implementation for Ping shell command. The implementation for Ping shell command.
(C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR>
Copyright (c) 2009 - 2012, Intel Corporation. All rights reserved.<BR> Copyright (c) 2009 - 2015, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License are licensed and made available under the terms and conditions of the BSD License
@ -249,11 +249,11 @@ ReadTime (
/** /**
Get and caculate the frequency in tick/ms. Get and calculate the frequency in ticks/ms.
The result is saved in the globle variable mFrequency The result is saved in the global variable mFrequency
@retval EFI_SUCCESS Caculated the frequency successfully. @retval EFI_SUCCESS Calculated the frequency successfully.
@retval Others Failed to caculate the frequency. @retval Others Failed to calculate the frequency.
**/ **/
EFI_STATUS EFI_STATUS
@ -279,7 +279,7 @@ GetFrequency (
// //
// The timer period is in femtosecond (1 femtosecond is 1e-15 second). // The timer period is in femtosecond (1 femtosecond is 1e-15 second).
// So 1e+12 is divided by timer period to produce the freq in tick/ms. // So 1e+12 is divided by timer period to produce the freq in ticks/ms.
// //
mFrequency = DivU64x64Remainder (1000000000000ULL, TimerPeriod, NULL); mFrequency = DivU64x64Remainder (1000000000000ULL, TimerPeriod, NULL);
@ -287,7 +287,7 @@ GetFrequency (
} }
/** /**
Caculate a duration in ms. Calculate a duration in ms.
@param[in] Begin The start point of time. @param[in] Begin The start point of time.
@param[in] End The end point of time. @param[in] End The end point of time.