@@ -277,7 +277,7 @@ Functions
277
277
Return the value (in fractional seconds) of a monotonic clock, i.e. a clock
278
278
that cannot go backwards. The clock is not affected by system clock updates.
279
279
The reference point of the returned value is undefined, so that only the
280
- difference between the results of consecutive calls is valid.
280
+ difference between the results of two calls is valid.
281
281
282
282
Use :func: `monotonic_ns ` to avoid the precision loss caused by the
283
283
:class: `float ` type.
@@ -306,7 +306,7 @@ Functions
306
306
clock with the highest available resolution to measure a short duration. It
307
307
does include time elapsed during sleep and is system-wide. The reference
308
308
point of the returned value is undefined, so that only the difference between
309
- the results of consecutive calls is valid.
309
+ the results of two calls is valid.
310
310
311
311
Use :func: `perf_counter_ns ` to avoid the precision loss caused by the
312
312
:class: `float ` type.
@@ -334,7 +334,7 @@ Functions
334
334
CPU time of the current process. It does not include time elapsed during
335
335
sleep. It is process-wide by definition. The reference point of the
336
336
returned value is undefined, so that only the difference between the results
337
- of consecutive calls is valid.
337
+ of two calls is valid.
338
338
339
339
Use :func: `process_time_ns ` to avoid the precision loss caused by the
340
340
:class: `float ` type.
@@ -626,7 +626,7 @@ Functions
626
626
CPU time of the current thread. It does not include time elapsed during
627
627
sleep. It is thread-specific by definition. The reference point of the
628
628
returned value is undefined, so that only the difference between the results
629
- of consecutive calls in the same thread is valid.
629
+ of two calls in the same thread is valid.
630
630
631
631
Use :func: `thread_time_ns ` to avoid the precision loss caused by the
632
632
:class: `float ` type.
0 commit comments