Skip to content

Commit 8e007a7

Browse files
committed
Profiling
1 parent a8bd844 commit 8e007a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2528,7 +2528,7 @@ duration = time() - start_time
25282528
#### High performance:
25292529
```python
25302530
from time import perf_counter
2531-
start_time = perf_counter() # Seconds since restart.
2531+
start_time = perf_counter() # Seconds since the restart.
25322532
...
25332533
duration = perf_counter() - start_time
25342534
```

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2204,7 +2204,7 @@
22042204

22052205

22062206
<div><h4 id="highperformance">High performance:</h4><pre><code class="python language-python hljs"><span class="hljs-keyword">from</span> time <span class="hljs-keyword">import</span> perf_counter
2207-
start_time = perf_counter() <span class="hljs-comment"># Seconds since restart.</span>
2207+
start_time = perf_counter() <span class="hljs-comment"># Seconds since the restart.</span>
22082208
...
22092209
duration = perf_counter() - start_time
22102210
</code></pre></div>

0 commit comments

Comments
 (0)