aboutsummaryrefslogtreecommitdiffstats
path: root/serd
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-24 14:15:40 +0000
committerDavid Robillard <d@drobilla.net>2011-05-24 14:15:40 +0000
commitf2a023926ed5eab26ef70a61f83f67d5dba4c902 (patch)
tree24717c29f46c03ef58829e1bb1a4f13047b251f5 /serd
parent30b28fb5f1a2d00d4a0b644fe88dd7d200231b2d (diff)
downloadserd-f2a023926ed5eab26ef70a61f83f67d5dba4c902.tar.gz
serd-f2a023926ed5eab26ef70a61f83f67d5dba4c902.tar.bz2
serd-f2a023926ed5eab26ef70a61f83f67d5dba4c902.zip
Improve documentation.
git-svn-id: http://svn.drobilla.net/serd/trunk@187 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'serd')
-rw-r--r--serd/serd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/serd/serd.h b/serd/serd.h
index 277096fe..bd5b50eb 100644
--- a/serd/serd.h
+++ b/serd/serd.h
@@ -117,7 +117,7 @@ typedef enum {
SERD_ANON_S_BEGIN = 1 << 3, /**< Start of anonymous subject */
SERD_ANON_O_BEGIN = 1 << 4, /**< Start of anonymous object */
SERD_ANON_CONT = 1 << 5, /**< Continuation of anonymous node */
- SERD_ANON_END = 1 << 6, /**< End of anonymous subject */
+ SERD_ANON_END = 1 << 6, /**< End of anonymous node */
} SerdStatementFlag;
/**
@@ -200,7 +200,7 @@ typedef struct {
const uint8_t* buf; /**< Value string */
size_t n_bytes; /**< Size in bytes (not including null) */
size_t n_chars; /**< Length in characters (not including null)*/
- SerdNodeFlags flags; /**< String properties */
+ SerdNodeFlags flags; /**< Node flags (e.g. string properties) */
SerdType type; /**< Node type */
} SerdNode;