From 5eca5e7657d00658996ba46b22f0f5396f25a076 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Thu, 2 May 2013 11:12:21 -0400 Subject: [PATCH] fix example options in README --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 96d95f1..b284d29 100644 --- a/README.md +++ b/README.md @@ -60,13 +60,13 @@ or insufficient arguments are present for an option. ### Example `options` - { - version: {}, - verbose: {short: 'v'}, - server: {nargs: (1..2)}, - username: {nargs: 1}, - password: {nargs: 1}, - } + { + version: {}, + verbose: {short: 'v'}, + server: {nargs: (1..2)}, + username: {nargs: 1}, + password: {nargs: 1}, + } The keys of the `options` hash can be either strings or symbols.