summaryrefslogtreecommitdiffstats
path: root/src/zix/tree.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-08-08 14:46:21 +0000
committerDavid Robillard <d@drobilla.net>2014-08-08 14:46:21 +0000
commitc39c5ec4f603605c29b3cfca405f9c121ac8ddde (patch)
tree6d3e83c0b67dbc33382803f30621ab98599ff7e4 /src/zix/tree.c
parentc816ee27e8a2f235558105940c39b1033556d9f9 (diff)
downloadsord-c39c5ec4f603605c29b3cfca405f9c121ac8ddde.tar.gz
sord-c39c5ec4f603605c29b3cfca405f9c121ac8ddde.tar.bz2
sord-c39c5ec4f603605c29b3cfca405f9c121ac8ddde.zip
Use Markdown in doc comments for better source readability.
git-svn-id: http://svn.drobilla.net/sord/trunk@301 3d64ff67-21c5-427c-a301-fe4f08042e5a
Diffstat (limited to 'src/zix/tree.c')
-rw-r--r--src/zix/tree.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/zix/tree.c b/src/zix/tree.c
index 844adb9..23a7e8c 100644
--- a/src/zix/tree.c
+++ b/src/zix/tree.c
@@ -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
* / \ / \