diff --git a/README.md b/README.md index 89454f3..fa2bd7e 100644 --- a/README.md +++ b/README.md @@ -2528,7 +2528,7 @@ duration = time() - start_time #### High performance: ```python from time import perf_counter -start_time = perf_counter() # Seconds since restart. +start_time = perf_counter() # Seconds since the restart. ... duration = perf_counter() - start_time ``` diff --git a/index.html b/index.html index d487fff..fe53644 100644 --- a/index.html +++ b/index.html @@ -2204,7 +2204,7 @@ duration = time() - start_time
from time import perf_counter
-start_time = perf_counter() # Seconds since restart.
+start_time = perf_counter() # Seconds since the restart.
...
duration = perf_counter() - start_time