summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorA Frederick Christensen <kal@ivories.org>2022-11-30 13:25:05 -0600
committerA Frederick Christensen <kal@ivories.org>2022-11-30 13:25:05 -0600
commitfb4b6117741f6248f1aa37000a5fc9b9333dfd16 (patch)
tree1ab58883b4d2476c923c3b649dfb0ed3c5130ff6
parentf655b6b64765216f9f09a2049ccee76e83c7b05f (diff)
downloadcalendar-cli-fb4b6117741f6248f1aa37000a5fc9b9333dfd16.zip
README.md cleanups
Multi-section config file was missing the second "section" name and a "{". Corrected misspelled "calldav-pass" -> "caldav-pass"
-rw-r--r--README.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/README.md b/README.md
index 5d20eb7..f298b32 100644
--- a/README.md
+++ b/README.md
@@ -144,12 +144,14 @@ The file may look like this:
A configuration with multiple sections may look like this:
```json
-{ "default":
+{
+"default":
{ "caldav_url": "http://foo.bar.example.com/caldav/",
"caldav_user": "luser",
"caldav_pass": "insecure"
},
- "caldav_url": "http://foo.baz.example.com/caldav/",
+"baz":
+ { "caldav_url": "http://foo.baz.example.com/caldav/",
"caldav_user": "luser2",
"caldav_pass": "insecure2"
}
@@ -166,7 +168,7 @@ Add a calendar item "testevent" at 2013-10-01:
./calendar-cli.py --calendar-url=http://calendar.bekkenstenveien53c.oslo.no/caldav.php/tobias/calendar/ calendar add 2013-10-01 testevent
-(assumes that `caldav-url`, `calldav-pass` and `caldav-user` has been added into configuration file. Those may also be added as command line options)
+(assumes that `caldav-url`, `caldav-pass` and `caldav-user` has been added into configuration file. Those may also be added as command line options)
Objectives
----------