summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTyler Ball <tyler-ball@users.noreply.github.com>2017-07-10 16:50:46 -0600
committerGitHub <noreply@github.com>2017-07-10 16:50:46 -0600
commitc3f8ba97bbae491e3444a6371638855bf1601b82 (patch)
treebcc20070b1e9ae471dc533e2b698a1c5291a98db /README.md
parent5a0a1fc9c9369fe73e8b12d3fbf384c7b146a348 (diff)
downloadmixlib-cli-c3f8ba97bbae491e3444a6371638855bf1601b82.tar.gz
Fixing example so it runs correctly when copy-pastaed
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index db22149..657149b 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ class MyCLI
:long => "--log_level LEVEL",
:description => "Set the log level (debug, info, warn, error, fatal)",
:required => true,
- :in => ['debug', 'info', 'warn', 'error', 'fatal'],
+ :in => [:debug, :info, :warn, :error, :fatal],
:proc => Proc.new { |l| l.to_sym }
option :help,