summaryrefslogtreecommitdiff
path: root/README.rdoc
diff options
context:
space:
mode:
Diffstat (limited to 'README.rdoc')
-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,