Skip to content

Commit af2c261

Browse files
authored
Update timers.md
1 parent 86d9436 commit af2c261

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: docs/features/timers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You may also specify the time to wait as a string e.g. '5 seconds' or '30 minute
3131

3232
**Important:** When using timers, do not use `Carbon::now()` to get the current time. Instead, use `WorkflowStub::now()`, which returns the current time as seen by the workflow system. This is crucial because the actual time may not match your application's system clock.
3333

34-
Additionally, when measuring elapsed time in workflows (e.g., tracking how long an operation takes), always get your start time with:
34+
Additionally, when measuring elapsed time in workflows (e.g., tracking how long an activity takes), always get your start time with:
3535

3636
```php
3737
$start = yield WorkflowStub::sideEffect(fn () => WorkflowStub::now());

0 commit comments

Comments
 (0)