Skip to content

Commit 803c357

Browse files
committed
Typo fixes
1 parent 7030fb6 commit 803c357

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ $scheduler->work();
466466
```
467467
The above code starts a worker that will run your job/s every minute.
468468
This is meant to be a testing/debugging tool, but you're free to use it however you like.
469-
You can optionally pass an array of "second" of when you want the worker to run your jobs, for example by passing `[0, 30]`, the worker will run your jobs at second **0** and at second **30** of the minute.
469+
You can optionally pass an array of "seconds" of when you want the worker to run your jobs, for example by passing `[0, 30]`, the worker will run your jobs at second **0** and at second **30** of the minute.
470470
```php
471471
$scheduler->work([0, 10, 25, 50, 55]);
472472
```
@@ -496,7 +496,7 @@ $scheduler->work();
496496
```
497497
Then in your command like run `php worker.php`. This will start a foreground process that you can kill by simply exiting the command.
498498

499-
The worker is not meant to collect any data about your runs, and as already said it is meant to be a testing/debuggin tool.
499+
The worker is not meant to collect any data about your runs, and as already said it is meant to be a testing/debugging tool.
500500

501501
## License
502502
[The MIT License (MIT)](LICENSE)

0 commit comments

Comments
 (0)