summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLee Jarvis <ljjarvis@gmail.com>2013-08-29 14:58:17 +0100
committerLee Jarvis <ljjarvis@gmail.com>2013-08-29 14:58:17 +0100
commit2ff410713043bd534c1c5f23b3eaa518b80a06f5 (patch)
tree6445c75e522534e9f311cb1603ea8e1d14860c06 /README.md
parenta35dbf55ba7b69aeb2dc5c21e72fa35be262ca63 (diff)
downloadslop-2ff410713043bd534c1c5f23b3eaa518b80a06f5.tar.gz
Update inconsistencies in readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 4650376..e2abf4a 100644
--- a/README.md
+++ b/README.md
@@ -2,9 +2,9 @@ Slop
====
Slop is a simple option parser with an easy to remember syntax and friendly API.
-API Documentation is available [here](http://injekt.github.com/rdoc/slop/).
+API Documentation is available [here](http://leejarvis.github.com/rdoc/slop/).
-[![Build Status](https://travis-ci.org/injekt/slop.png?branch=master)](http://travis-ci.org/injekt/slop)
+[![Build Status](https://travis-ci.org/leejarvis/slop.png?branch=master)](http://travis-ci.org/leejarvis/slop)
Usage
-----
@@ -14,7 +14,7 @@ opts = Slop.parse do
banner 'Usage: foo.rb [options]'
on 'name=', 'Your name'
- on 'p', 'password', 'An optional password', argument: :optional
+ on 'p', 'password', 'An optional password', optional_argument: true
on 'v', 'verbose', 'Enable verbose mode'
end