diff options
author | David Robillard <d@drobilla.net> | 2014-09-28 17:49:03 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-09-28 17:49:03 +0000 |
commit | b7d81e0674af26a326fad1d600012d1a9e2a05ae (patch) | |
tree | aa8300de4cc458e77de607bbb4bd7b1fa12016b2 /zix/tree.c | |
parent | df41412520ae9962a3a833ccb5b2dd408abd43ed (diff) | |
download | zix-b7d81e0674af26a326fad1d600012d1a9e2a05ae.tar.gz zix-b7d81e0674af26a326fad1d600012d1a9e2a05ae.tar.bz2 zix-b7d81e0674af26a326fad1d600012d1a9e2a05ae.zip |
Use Markdown for parameters in dox comments.
git-svn-id: http://svn.drobilla.net/zix/trunk@93 df6676b4-ccc9-40e5-b5d6-7c4628a128e3
Diffstat (limited to 'zix/tree.c')
-rw-r--r-- | zix/tree.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ /* - Copyright 2011 David Robillard <http://drobilla.net> + Copyright 2011-2014 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -146,7 +146,7 @@ rotate(ZixTreeNode* p, ZixTreeNode* q) } /** - * Rotate left about @a p. + * Rotate left about `p`. * * p q * / \ / \ @@ -178,7 +178,7 @@ rotate_left(ZixTreeNode* p, int* height_change) } /** - * Rotate right about @a p. + * Rotate right about `p`. * * p q * / \ / \ @@ -211,7 +211,7 @@ rotate_right(ZixTreeNode* p, int* height_change) } /** - * Rotate left about @a p->left then right about @a p. + * Rotate left about `p->left` then right about `p`. * * p r * / \ / \ @@ -255,7 +255,7 @@ rotate_left_right(ZixTreeNode* p, int* height_change) } /** - * Rotate right about @a p->right then right about @a p. + * Rotate right about `p->right` then right about `p`. * * p r * / \ / \ |