Skip to content

Commit 1bafcce

Browse files
committed
readme fix
1 parent e55f4f6 commit 1bafcce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Create beautiful bash scripts from simple YAML configuration
3131
- [Argument options](#argument-options)
3232
- [Flag options](#flag-options)
3333
- [Environment Variable options](#environment-variable-options)
34-
- [Extensible Commands](#extensible-commands)
34+
- [Extensible Scripts](#extensible-scripts)
3535
- [Real World Examples](#real-world-examples)
3636
- [Contributing / Support](#contributing--support)
3737

@@ -204,7 +204,7 @@ command and subcommands (under the `commands` definition).
204204
`help` | The header text to display when using `--help`. This option can have multiple lines. In this case, the first line will be used as summary wherever appropriate.
205205
`version` | The string to display when using `--version`. *Applicable only in the main command*.
206206
`default` | Setting this to `true` on any command, will cause any unrecognized command line to be passed to this command. *Applicable only in subcommands*.
207-
`extensible` | Specify that this command can be [externally extended](#extensible-commands).
207+
`extensible` | Specify that this command can be [externally extended](#extensible-commands). *Applicable only in the main command*.
208208
`examples` | Specify an array of examples to show when using `--help`. Each example can have multiple lines.
209209
`environment_variables` | Specify an array of [environment variables](#environment-variable-options) needed by your script.
210210
`commands` | Specify the array of [commands](#command-options). Each command will have its own args and flags. Note: if `commands` is provided, you cannot specify flags or args at the same level.
@@ -264,7 +264,7 @@ set.
264264
`required` | Specify if this variable is required.
265265

266266

267-
## Extensible Commands
267+
## Extensible Scripts
268268

269269
You may configure your generated bash script to delegate any unknown command
270270
to an external executable, by setting the `extensible` option to either `true`,

0 commit comments

Comments
 (0)