From 8e007a7e17a5776453fa961d29ad562d35125057 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 27 Jan 2021 06:47:59 +0100 Subject: [PATCH] Profiling --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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

High performance:

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