Skip to content

Commit

Permalink
docs: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
nekomeowww committed Jan 5, 2023
1 parent 8a37ec3 commit 543b6d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
TimeCapsule is a Redis based task scheduling module written in Golang. It is designed to be used as a library in your own application. It is not a standalone application.

As the name suggests, it is inspired by the concept of **time capsule** which is designed to be used in a similar way.
You can schedule tasks to be executed at a specific time in the future just like you buried a time capsule, and use this module to periodically look for tasks that are due to be executed from the dataloder. Once a task is due, it will be executed and removed from the dataloader.
You can schedule tasks to be executed at a specific time in the future just like you buried a time capsule, and use this module to periodically look for tasks that are due to be executed from the dataloader. Once a task is due, it will be executed and removed from the dataloader.

Feeature:
Features:

- [x] Golang 1.18 Generic support
- [X] Customizable dataloader for performing task scheduling and execution
Expand All @@ -34,7 +34,7 @@ import (
func main() {
// initialize redis dataloader
redisDataloder := NewRedisDataloader[string]("some/task/key", redis.NewClient(&redis.Options{
Addr: net.JoinHostPort("localhost", "6379"),
Addr: net.JoinHostPort("localhost", "6379"),
Password: "123456",
}))

Expand Down

0 comments on commit 543b6d3

Please sign in to comment.