summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLee Jarvis <lee@jarvis.co>2011-11-04 19:45:19 -0700
committerLee Jarvis <lee@jarvis.co>2011-11-04 19:45:19 -0700
commitf6031af7e9bed4aee1819c1edd4b8f0e5f5f42fc (patch)
treef453257860d081ba49b3687d88aa0b7ea0e0043f /README.md
parent660c455d2b6df3f027484b40249b1dad924d84f8 (diff)
downloadslop-f6031af7e9bed4aee1819c1edd4b8f0e5f5f42fc.tar.gz
fix typo in readme
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 369cce4..0e055e3 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ opts = Slop.parse do
on :n, :name=, 'Your name' # This option requires an argument
on :s, :sex, 'Your sex', true # So does this one
on :a, :age, 'Your age', optional: true # This one accepts an optional argument
- on '-D', '--debug', 'Enable debug' # The prefix -'s are optional
+ on '-D', '--debug', 'Enable debug' # The prefixed -'s are optional
end
# if ARGV is `-v --name 'lee jarvis' -s male`