Skip to content

Commit daa5950

Browse files
committed
[Stopwatch] Fixing a few standards per @wouterj
1 parent 593168f commit daa5950

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

components/stopwatch.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ microtime by yourself. Instead, use the simple
3232
$stopwatch = new Stopwatch();
3333
// Start event named 'eventName'
3434
$stopwatch->start('eventName');
35-
// some code goes here
35+
// ... some code goes here
3636
$event = $stopwatch->stop('eventName');
3737

3838
You also can provide a category name to an event::
@@ -53,11 +53,11 @@ method does::
5353
$stopwatch = new Stopwatch();
5454
// Start event named 'foo'
5555
$stopwatch->start('foo');
56-
// some code goes here
56+
// ... some code goes here
5757
$stopwatch->lap('foo');
58-
// some code goes here
58+
// ... some code goes here
5959
$stopwatch->lap('foo');
60-
// some other code goes here
60+
// ... some other code goes here
6161
$event = $stopwatch->stop('foo');
6262

6363
Lap information is stored in periods within the event. To get lap information

0 commit comments

Comments
 (0)