diff --git a/docs/docs/api_reference.md b/docs/docs/api_reference.md index 6595de0e..e36d21b9 100644 --- a/docs/docs/api_reference.md +++ b/docs/docs/api_reference.md @@ -17,7 +17,7 @@ task [--flags] [tasks...] [-- CLI_ARGS...] :::tip -If `--` is given, all remaning arguments will be assigned to a special +If `--` is given, all remaining arguments will be assigned to a special `CLI_ARGS` variable ::: @@ -152,12 +152,12 @@ Some environment variables can be overridden to adjust Task behavior. | ---------- | ---------------------------------- | ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `version` | `string` | | Version of the Taskfile. The current version is `3`. | | `output` | `string` | `interleaved` | Output mode. Available options: `interleaved`, `group` and `prefixed`. | -| `method` | `string` | `checksum` | Default method in this Taskfile. Can be overriden in a task by task basis. Available options: `checksum`, `timestamp` and `none`. | +| `method` | `string` | `checksum` | Default method in this Taskfile. Can be overridden in a task by task basis. Available options: `checksum`, `timestamp` and `none`. | | `includes` | [`map[string]Include`](#include) | | Additional Taskfiles to be included. | | `vars` | [`map[string]Variable`](#variable) | | A set of global variables. | | `env` | [`map[string]Variable`](#variable) | | A set of global environment variables. | | `tasks` | [`map[string]Task`](#task) | | A set of task definitions. | -| `silent` | `bool` | `false` | Default 'silent' options for this Taskfile. If `false`, can be overidden with `true` in a task by task basis. | +| `silent` | `bool` | `false` | Default 'silent' options for this Taskfile. If `false`, can be overridden with `true` in a task by task basis. | | `dotenv` | `[]string` | | A list of `.env` file paths to be parsed. | | `run` | `string` | `always` | Default 'run' option for this Taskfile. Available options: `always`, `once` and `when_changed`. | | `interval` | `string` | `5s` | Sets a different watch interval when using `--watch`, the default being 5 seconds. This string should be a valid [Go Duration](https://pkg.go.dev/time#ParseDuration). |