Skip to content

Commit 4d5da51

Browse files
authored
Improve wording
1 parent 4a6d95f commit 4d5da51

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/en/index.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,14 +326,15 @@ Helper Functions
326326
Using DebugTimer
327327
----------------
328328

329-
Use the DebugTimer to measure parts of the code that are not captured by the default timers, such as portions of a controller action, service logic or view rendering::
329+
Use the `DebugTimer` to measure parts of the code that are not captured by the default timers,
330+
such as portions of a controller action, service logic or view rendering::
330331

331332
use DebugKit\DebugTimer;
332333

333334
public function view($id)
334335
{
335336
DebugTimer::start('load_article', 'Fetching article from database');
336-
...
337+
// Code to measure the execution time for
337338
DebugTimer::stop('load_article');
338339
}
339340

0 commit comments

Comments
 (0)