fix some QElapsedTimer doc grammar issues
authorJeremy Katz <jeremy.katz@nokia.com>
Fri, 10 Aug 2012 12:10:09 +0000 (14:10 +0200)
committerQt by Nokia <qt-info@nokia.com>
Mon, 13 Aug 2012 20:44:58 +0000 (22:44 +0200)
Change-Id: I9bdb0b93b101119477a560b28396f88ea8103745
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
src/corelib/tools/qelapsedtimer.cpp

index 61cc475..00a2f0a 100644 (file)
@@ -91,7 +91,7 @@ QT_BEGIN_NAMESPACE
     platforms that support it (see QElapsedTimer::isMonotonic()). This has
     the added benefit that QElapsedTimer is immune to time adjustments, such
     as the user correcting the time. Also unlike QTime, QElapsedTimer is
-    immune to changes in the timezone settings, such as daylight savings
+    immune to changes in the timezone settings, such as daylight saving
     periods.
 
     On the other hand, this means QElapsedTimer values can only be compared
@@ -112,7 +112,7 @@ QT_BEGIN_NAMESPACE
 
     \section2 32-bit overflows
 
-    Some of the clocks that QElapsedTimer have a limited range and may
+    Some of the clocks used by QElapsedTimer have a limited range and may
     overflow after hitting the upper limit (usually 32-bit). QElapsedTimer
     deals with this overflow issue and presents a consistent timing. However,
     when extracting the time since reference from QElapsedTimer, two
@@ -173,7 +173,7 @@ QT_BEGIN_NAMESPACE
     counter, which allows avoiding the overflow.
 
     On Windows systems, the clock overflows after 2^32 milliseconds, which
-    corresponds to roughly 49.7 days. This means two processes's reckoning of
+    corresponds to roughly 49.7 days. This means two processes' reckoning of
     the time since the reference may be different by multiples of 2^32
     milliseconds. When comparing such values, it's recommended that the high
     32 bits of the millisecond count be masked off.