Docs: Fix wrong exe parameter name for the exec command (#104396)

Small documentation issue I ran into while writing a custom job type

The exec command takes an `exe` parameter, similar to other commands,
but the documentation wrongly indicates the parameter should be `exec`.

Reviewed-on: https://projects.blender.org/studio/flamenco/pulls/104396
This commit is contained in:
Jonas Holzman 2025-06-07 11:42:43 +02:00 committed by Sybren A. Stüvel
parent 8b4eeb7c69
commit 542fb5403b

View File

@ -84,7 +84,7 @@ depending on the platform it runs on.
| Parameter | Type | Description | | Parameter | Type | Description |
|-----------|------------|------------------------| |-----------|------------|------------------------|
| `exec` | `string` | The executable to run. | | `exe` | `string` | The executable to run. |
| `args` | `[]string` | Commandline arguments. | | `args` | `[]string` | Commandline arguments. |
## Misc: `echo` ## Misc: `echo`