aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Conway <john.a.conway@gmail.com>2019-05-10 14:43:34 +0100
committerJohn Conway <john.a.conway@gmail.com>2019-05-10 14:43:34 +0100
commit2f8de1d8a7230b69be3e57e83a9b4b479aaa87a1 (patch)
tree9e7eeefb7a164222dc9dc77d4bbf0a69d1fa37c3
parent6b40d4013b2c00258742d6b345d3e7a8ab3e69d2 (diff)
downloadfeed-nim-2f8de1d8a7230b69be3e57e83a9b4b479aaa87a1.tar.gz
feed-nim-2f8de1d8a7230b69be3e57e83a9b4b479aaa87a1.zip
Minor formatting
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index f9a8550..3f2a03b 100644
--- a/README.md
+++ b/README.md
@@ -32,13 +32,13 @@ There are some exeptions, elements that can be repeated according to the specifi
*RSS*: `<item>` is accessed as `.items[index]`<br>
*RSS and Atom*: `<category>` is accessed as `.categories[index]`<br>
*Atom*: `<entry>` is accessed as `.entries[index]`<br>
-*Atom*: `<author>` is accessed as `.authors[index]` (if you call just .author, you will return the first author of the sequence)<br>
+*Atom*: `<author>` is accessed as `.authors[index]` (if you call just `.author`, you will return the first author of the sequence)<br>
*Atom*: `<contributor>` is accessed as `.contributors[index]` (again, calling this singular will return the first in the sequence)
-Some Atom nodes have the Nim keyword 'type' as an attribute. These have been changed as follows.
+Some Atom nodes have the Nim keyword 'type' as an attribute. These have been changed as follows:
-`<link type="">` type is accesed with linkType<br>
-`<content type="">, <title type="">, and <subtitle type="">` types are accesed with textType
+`<link type="">` type is accesed with `.linkType`<br>
+`<content type="">`, `<title type="">`, and `<subtitle type="">` types are accesed with `.textType`
### Limitations