fix example options in README

This commit is contained in:
Josh Holtrop 2013-05-02 11:12:21 -04:00
parent 64e084b0d4
commit 5eca5e7657

View File

@ -60,13 +60,13 @@ or insufficient arguments are present for an option.
### Example `options` ### Example `options`
{ {
version: {}, version: {},
verbose: {short: 'v'}, verbose: {short: 'v'},
server: {nargs: (1..2)}, server: {nargs: (1..2)},
username: {nargs: 1}, username: {nargs: 1},
password: {nargs: 1}, password: {nargs: 1},
} }
The keys of the `options` hash can be either strings or symbols. The keys of the `options` hash can be either strings or symbols.