summaryrefslogtreecommitdiffstats
path: root/sord
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-08-08 06:11:57 +0000
committerDavid Robillard <d@drobilla.net>2014-08-08 06:11:57 +0000
commitc816ee27e8a2f235558105940c39b1033556d9f9 (patch)
treef9f00aa180511d19f2d79192f0469e50128925a4 /sord
parent52fda35629b017cf6b1c697644e6fa8c17ccd174 (diff)
downloadsord-c816ee27e8a2f235558105940c39b1033556d9f9.tar.gz
sord-c816ee27e8a2f235558105940c39b1033556d9f9.tar.bz2
sord-c816ee27e8a2f235558105940c39b1033556d9f9.zip
Use Markdown in doc comments for better source readability.
git-svn-id: http://svn.drobilla.net/sord/trunk@300 3d64ff67-21c5-427c-a301-fe4f08042e5a
Diffstat (limited to 'sord')
-rw-r--r--sord/sord.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sord/sord.h b/sord/sord.h
index 2269d13..93418db 100644
--- a/sord/sord.h
+++ b/sord/sord.h
@@ -159,7 +159,7 @@ sord_world_free(SordWorld* world);
/**
Set a function to be called when errors occur.
- The @p error_sink will be called with @p handle as its first argument. If
+ The `error_sink` will be called with `handle` as its first argument. If
no error function is set, errors are printed to stderr.
*/
SORD_API
@@ -399,7 +399,7 @@ sord_search(SordModel* model,
const SordNode* g);
/**
Search for a single node that matches a pattern.
- Exactly one of @p s, @p p, @p o must be NULL.
+ Exactly one of `s`, `p`, `o` must be NULL.
This function is mainly useful for predicates that only have one value.
The returned node must be freed using sord_node_free.
@return the first matching node, or NULL if no matches are found.