Skip to content

Commit cfdeef3

Browse files
committed
Minor tweak
1 parent f493a42 commit cfdeef3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

performance.rst

+2-3
Original file line numberDiff line numberDiff line change
@@ -331,14 +331,13 @@ Sections are a way to split the profile timeline into groups. Example::
331331
$this->stopwatch->stopSection('parsing');
332332

333333
All events that don't belong to any named section are added to the special section
334-
``__root__``. This way you can get all stopwatch events, even if you don't know
335-
their names::
334+
called ``__root__``. This way you can get all stopwatch events, even if you don't
335+
know their names, as follows::
336336

337337
foreach($this->stopwatch->getSectionEvents('__root__') as $event) {
338338
echo (string) $event;
339339
}
340340

341-
342341
Learn more
343342
----------
344343

0 commit comments

Comments
 (0)