Skip to content

Commit

Permalink
docs: minor [skip ci][ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
adhocore committed Apr 23, 2023
1 parent fe221c0 commit b8b2e30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Check the section below for more sophisticated way of managing tasks automatical
---
### Go Tasker

Tasker is a task manager that can be programatically used in Golang applications. It runs as a daemon and and invokes tasks scheduled with cron expression:
Tasker is a task manager that can be programatically used in Golang applications. It runs as a daemon and invokes tasks scheduled with cron expression:
```go
package main

Expand Down Expand Up @@ -175,7 +175,7 @@ taskr := tasker.New(tasker.Option{})

concurrent := false
expr, task := "* * * * * *", tasker.Taskify("php -r 'sleep(2);'")
taskr.Task(expr, task, false)
taskr.Task(expr, task, concurrent)
```

### Task Daemon
Expand Down
2 changes: 1 addition & 1 deletion pkg/tasker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ taskr := tasker.New(tasker.Option{})

concurrent := false
expr, task := "* * * * * *", tasker.Taskify("php -r 'sleep(2);'")
taskr.Task(expr, task, false)
taskr.Task(expr, task, concurrent)
```

### Task Daemon
Expand Down

0 comments on commit b8b2e30

Please sign in to comment.