summaryrefslogtreecommitdiffstats
path: root/sord
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-24 19:45:07 +0000
committerDavid Robillard <d@drobilla.net>2011-05-24 19:45:07 +0000
commit6edff46e596289ada2a262be18b394b92bbff3f0 (patch)
treec6cd8cb1b2b331122f8b9b96bd75982310fd64f6 /sord
parente093312a225c5252632ebb5d15b71fd19648b366 (diff)
downloadsord-6edff46e596289ada2a262be18b394b92bbff3f0.tar.gz
sord-6edff46e596289ada2a262be18b394b92bbff3f0.tar.bz2
sord-6edff46e596289ada2a262be18b394b92bbff3f0.zip
Tidy up documentation
git-svn-id: http://svn.drobilla.net/sord/trunk@134 3d64ff67-21c5-427c-a301-fe4f08042e5a
Diffstat (limited to 'sord')
-rw-r--r--sord/sord.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/sord/sord.h b/sord/sord.h
index 1601876..9e6110a 100644
--- a/sord/sord.h
+++ b/sord/sord.h
@@ -87,7 +87,7 @@ typedef struct SordIterImpl SordIter;
typedef struct SordNodeImpl SordNode;
/**
- Quad of nodes (i.e. a statement), or a quad pattern.
+ Quad of nodes (a statement), or a quad pattern.
Nodes are ordered (S P O G). The ID of the default graph is 0.
*/
@@ -155,8 +155,8 @@ sord_world_free(SordWorld* world);
/**
Get a URI node from a string.
- Note this function measures @a str, which is a common bottleneck.
- Use sord_node_from_serd_node instead if @a str is already measured.
+ Note this function measures @c str, which is a common bottleneck.
+ Use sord_node_from_serd_node instead if @c str is already measured.
*/
SORD_API
SordNode*
@@ -165,8 +165,8 @@ sord_new_uri(SordWorld* world, const uint8_t* str);
/**
Get a blank node from a string.
- Note this function measures @a str, which is a common bottleneck.
- Use sord_node_from_serd_node instead if @a str is already measured.
+ Note this function measures @c str, which is a common bottleneck.
+ Use sord_node_from_serd_node instead if @c str is already measured.
*/
SORD_API
SordNode*
@@ -175,8 +175,8 @@ sord_new_blank(SordWorld* world, const uint8_t* str);
/**
Get a literal node from a string.
- Note this function measures @a str, which is a common bottleneck.
- Use sord_node_from_serd_node instead if @a str is already measured.
+ Note this function measures @c str, which is a common bottleneck.
+ Use sord_node_from_serd_node instead if @c str is already measured.
*/
SORD_API
SordNode*
@@ -186,7 +186,7 @@ sord_new_literal(SordWorld* world,
const char* lang);
/**
- Copy a node (i.e. obtain a reference).
+ Copy a node (obtain a reference).
Node that since nodes are interned and reference counted, this does not
actually create a deep copy of @c node.
@@ -196,7 +196,7 @@ SordNode*
sord_node_copy(const SordNode* node);
/**
- Free a node (i.e. drop a reference).
+ Free a node (drop a reference).
*/
SORD_API
void