diff options
author | David Robillard <d@drobilla.net> | 2014-08-08 14:46:53 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-08-08 14:46:53 +0000 |
commit | 46cf9d1f81940dcdec3fc6415fb8233936272d65 (patch) | |
tree | ad0a7357e20dde3adf35c68e7ab9afe17ab628f4 /src/node.c | |
parent | aa80f72d518cf633f97a824f625b44df72cc543d (diff) | |
download | lilv-46cf9d1f81940dcdec3fc6415fb8233936272d65.tar.gz lilv-46cf9d1f81940dcdec3fc6415fb8233936272d65.tar.bz2 lilv-46cf9d1f81940dcdec3fc6415fb8233936272d65.zip |
Use Markdown in doc comments for better source readability.
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5429 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/node.c')
-rw-r--r-- | src/node.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -44,7 +44,7 @@ lilv_node_set_numerics_from_string(LilvNode* val, size_t len) } } -/** Note that if @a type is numeric or boolean, the returned value is corrupt +/** Note that if `type` is numeric or boolean, the returned value is corrupt * until lilv_node_set_numerics_from_string is called. It is not * automatically called from here to avoid overhead and imprecision when the * exact string value is known. @@ -93,7 +93,7 @@ lilv_node_new(LilvWorld* world, LilvNodeType type, const char* str) return val; } -/** Create a new LilvNode from @a node, or return NULL if impossible */ +/** Create a new LilvNode from `node`, or return NULL if impossible */ LilvNode* lilv_node_new_from_node(LilvWorld* world, const SordNode* node) { |