Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
wangkirin authored Dec 27, 2023
1 parent 71cf343 commit 40747cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Users need to program to implement the `Action` trait to define the specific log
First, users need to define some specific task logic. There are two ways to define task logic:

- Create a closure whose type is `Simple`, which is suitable for simple scenarios.
- Create a type and implement the `Complex` trait, which is suitable for more complex situations. For example, if the logic of the task is to execute a system command, the command string needs to be recorded in some way. You can create a `Commad` structure with a string attribute inside to store the command string.
- Create a type and implement the `Complex` trait, which is suitable for more complex situations. For example, if the logic of the task is to execute a system command, the command string needs to be recorded in some way. You can create a `Command` structure with a string attribute inside to store the command string.

You can refer to examples:`examples/actions.rs`.

Expand Down

0 comments on commit 40747cf

Please sign in to comment.