diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2024-05-18 19:09:57 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2024-05-18 19:09:57 -0600 |
| commit | bf35c4380f7e46ca29bf55466fad3290502da9b8 (patch) | |
| tree | edaddbda5d3094c084faed7f096706538f176322 | |
| parent | 2d6745d84858d486afb0d00bef4f7fca0094a7b2 (diff) | |
use consistent terminology in CLI usage for option that may be specified more than once
| -rw-r--r-- | lib/asciidoctor/cli/options.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asciidoctor/cli/options.rb b/lib/asciidoctor/cli/options.rb index b6476da2..30733672 100644 --- a/lib/asciidoctor/cli/options.rb +++ b/lib/asciidoctor/cli/options.rb @@ -100,7 +100,7 @@ module Asciidoctor self[:attributes][name] = val end opts.on '-T', '--template-dir DIR', 'a directory containing custom converter templates that override the built-in converter (requires tilt gem)', - 'may be specified multiple times' do |template_dir| + 'may be specified more than once' do |template_dir| if self[:template_dirs].nil? self[:template_dirs] = [template_dir] elsif ::Array === self[:template_dirs] |
