Skip to content

Commit

Permalink
Fix typo in README (#529)
Browse files Browse the repository at this point in the history
Signed-off-by: Mohamad Fadhil <[email protected]>
  • Loading branch information
sdil authored Nov 24, 2024
1 parent d3d365f commit d09571a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ The choice of protobuf is due to easy serialization over wire and strong schema
You can schedule sending messages to actor that will be acted upon in the future. To achieve that you can use the following methods on the [Actor System](./actors/actor_system.go):

- `ScheduleOnce` - will send the given message to a local actor _**once**_ after a given interval
- `Schedule` - will sendd the given message to a local actor at a given interval
- `Schedule` - will send the given message to a local actor at a given interval
- `RemoteSchedule` - will send the given message to a remote actor at a given interval. This requires remoting to be enabled on the actor system.
- `RemoteScheduleOnce` - will send the given message to a remote actor _**once**_ after a given interval. This requires remoting to be enabled on the actor system.
- `ScheduleWithCron` - will send the given message to a local actor using a [cron expression](#cron-expression-format).
Expand Down Expand Up @@ -656,4 +656,4 @@ earthly +test
One can run the benchmark test from the [bench package](./bench):

- `make bench` to run the benchmark
- `make bench-stats` to see the benchmark stats
- `make bench-stats` to see the benchmark stats

0 comments on commit d09571a

Please sign in to comment.