Fix typo in FAQ: 'Default:' to 'Default='

This commit is contained in:
Germain Masse 2017-08-14 20:37:12 +02:00
parent 48848fd17c
commit 2fcd0a765b
No known key found for this signature in database
GPG Key ID: 1BD5931FF75F3EAC
2 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@ Released: TBA.
- [x] Fix typos in megamount (thanks @gsaponaro)
- [x] Enable color in screen or tmux (#92, @gmasse)
- [x] Change `egrep` to `grep -E` in test and lib scripts to comply with ShellCheck (#92, @gmasse)
- [x] Fix typo in FAQ (#92, @gmasse)
## v2.3.0

2
FAQ.md
View File

@ -55,7 +55,7 @@ source main.sh
1. Copy the line from the `main.sh` [read block](https://github.com/kvz/bash3boilerplate/blob/v2.1.0/main.sh#L109-L115) that most resembles the desired behavior and paste the line into the same block.
1. Edit the single-character (e.g., `-d`) and, if present, the multi-character (e.g., `--debug`) versions of the flag in the copied line.
1. Omit the `[arg]` text in the copied line, if the desired flag takes no arguments.
1. Omit or edit the text after `Default:` to set or not set default values, respectively.
1. Omit or edit the text after `Default=` to set or not set default values, respectively.
1. Omit the `Required.` text, if the flag is optional.
## How do I access the value of a command-line argument?