summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLee Jarvis <lee@jarvis.co>2011-05-19 15:41:21 +0100
committerLee Jarvis <lee@jarvis.co>2011-05-19 15:41:21 +0100
commit6d62f1220d8e8d590ef599f9d14eafeeee959041 (patch)
tree1af5f087e75cb08fa02049f048d46a2a36df5efc /README.md
parent03ff5ed8fbb3550a0a7e3533dbe18a7cc1261401 (diff)
downloadslop-6d62f1220d8e8d590ef599f9d14eafeeee959041.tar.gz
fix indentation of optparse example
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 21972a5..d72b5c8 100644
--- a/README.md
+++ b/README.md
@@ -353,7 +353,7 @@ gather a bunch of key/value options, usually you would do something like this:
end
opt.on('-a', '--age AGE', 'Your age') do |age|
- things[:age] = age
+ things[:age] = age
end
# you get the point