summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2015-12-01 10:47:39 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2015-12-01 10:47:39 -0800
commit1e943872d018515b8534965325661b0ecd64b1e5 (patch)
tree15272c3ec8706beeec141bbe9fe301eed399db56
parentffc7b1cc75c65e33d053580181a35934c5fdeead (diff)
parentbd2a17609537fe0d477f8b3c38ac7391e4788a05 (diff)
downloadmixlib-cli-1e943872d018515b8534965325661b0ecd64b1e5.tar.gz
Merge pull request #21 from niku4i/missing-comma
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,