diff options
author | pooryorick <com.digitalsmarties@pooryorick.com> | 2023-04-12 13:30:39 (GMT) |
---|---|---|
committer | pooryorick <com.digitalsmarties@pooryorick.com> | 2023-04-12 13:30:39 (GMT) |
commit | cf6c56c88d5339f1a4106b80aa7209ee5f061e50 (patch) | |
tree | 155947fa3710efc77fc09abcf12c46652e30fcb6 /win/tclWinTime.c | |
parent | b571892e4f3f2776d9794279256e3532a2c2c861 (diff) | |
download | tcl-cf6c56c88d5339f1a4106b80aa7209ee5f061e50.zip tcl-cf6c56c88d5339f1a4106b80aa7209ee5f061e50.tar.gz tcl-cf6c56c88d5339f1a4106b80aa7209ee5f061e50.tar.bz2 |
Correct spelling errors in comments and documentation, but also a non-comment
corrections in history.tcl and tcltest.test.
Diffstat (limited to 'win/tclWinTime.c')
-rw-r--r-- | win/tclWinTime.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/win/tclWinTime.c b/win/tclWinTime.c index e8401a5..6fecbd2 100644 --- a/win/tclWinTime.c +++ b/win/tclWinTime.c @@ -650,7 +650,7 @@ NativeGetMicroseconds(void) if (curCounter.QuadPart <= perfCounterLastCall) { /* - * Calibrated file-time is saved from posix in 100-ns ticks + * Calibrated file-time is saved from Posix in 100-ns ticks */ return fileTimeLastCall / 10; @@ -669,7 +669,7 @@ NativeGetMicroseconds(void) if (curCounter.QuadPart - perfCounterLastCall < 11 * curCounterFreq * timeInfo.calibrationInterv / 10) { /* - * Calibrated file-time is saved from posix in 100-ns ticks. + * Calibrated file-time is saved from Posix in 100-ns ticks. */ return NativeCalc100NsTicks(fileTimeLastCall, @@ -1029,7 +1029,7 @@ CalibrationThread( timeInfo.fileTimeLastCall.HighPart = curFileTime.dwHighDateTime; /* - * Calibrated file-time will be saved from posix in 100-ns ticks. + * Calibrated file-time will be saved from Posix in 100-ns ticks. */ timeInfo.fileTimeLastCall.QuadPart -= timeInfo.posixEpoch.QuadPart; @@ -1104,7 +1104,7 @@ UpdateTimeEachSecond(void) * step over 1 second. */ /* - * Sample performance counter and system time (from posix epoch). + * Sample performance counter and system time (from Posix epoch). */ GetSystemTimeAsFileTime(&curSysTime); @@ -1129,7 +1129,7 @@ UpdateTimeEachSecond(void) lastFileTime.QuadPart = curFileTime.QuadPart; /* - * We devide by timeInfo.curCounterFreq.QuadPart in several places. That + * We divide by timeInfo.curCounterFreq.QuadPart in several places. That * value should always be positive on a correctly functioning system. But * it is good to be defensive about such matters. So if something goes * wrong and the value does goes to zero, we clear the |