Skip to content

Commit 74c2d1e

Browse files
authored
Apply suggestions from code review
Improve wording
1 parent 6d0c239 commit 74c2d1e

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
@@ -320,14 +320,15 @@ Helper Functions
320320
Using DebugTimer
321321
----------------
322322

323-
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::
323+
Use the `DebugTimer` to measure parts of the code that are not captured by the default timers,
324+
such as portions of a controller action, service logic or view rendering::
324325

325326
use DebugKit\DebugTimer;
326327

327328
public function view($id)
328329
{
329330
DebugTimer::start('load_article', 'Fetching article from database');
330-
...
331+
// Code to measure the execution time for
331332
DebugTimer::stop('load_article');
332333
}
333334

0 commit comments

Comments
 (0)