summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuhiro Nikushi <deneb.ge@gmail.com>2015-07-03 14:39:51 +0900
committerNobuhiro Nikushi <deneb.ge@gmail.com>2015-07-03 14:43:48 +0900
commitbd2a17609537fe0d477f8b3c38ac7391e4788a05 (patch)
tree013168826d41223a0fe46d429e7b3daaf9b6643e
parentafc46648cf3e8803bbe7bb0722b188d7435737c9 (diff)
downloadmixlib-cli-bd2a17609537fe0d477f8b3c38ac7391e4788a05.tar.gz
Fix missing comma at the end of line in README
-rw-r--r--README.rdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.rdoc b/README.rdoc
index f164c05..aba158d 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -19,7 +19,7 @@ Mixlib::CLI provides a class-based command line option parsing object, like the
: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,