From 6edff46e596289ada2a262be18b394b92bbff3f0 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 24 May 2011 19:45:07 +0000 Subject: Tidy up documentation git-svn-id: http://svn.drobilla.net/sord/trunk@134 3d64ff67-21c5-427c-a301-fe4f08042e5a --- sord/sord.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'sord') 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 -- cgit v1.2.1