summaryrefslogtreecommitdiff
path: root/libavutil/tree.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-02-26 22:59:16 +0000
committerDiego Biurrun <diego@biurrun.de>2007-02-26 22:59:16 +0000
commita93575fa3dc7a49c322320d437f500702423c9bf (patch)
tree4a0eb8d0baaeb791dbf11a501cab717082ddeaea /libavutil/tree.h
parent549b2c0cc32662c938331c3282eaa5f876b3ffc1 (diff)
spelling/grammar fixes for a Doxygen comment
Originally committed as revision 8136 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/tree.h')
-rw-r--r--libavutil/tree.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavutil/tree.h b/libavutil/tree.h
index 36897ef46e..b23051c9ce 100644
--- a/libavutil/tree.h
+++ b/libavutil/tree.h
@@ -41,10 +41,10 @@ void *av_tree_find(const struct AVTreeNode *root, void *key, int (*cmp)(void *ke
* root node can change during insertions, this is required to
* keep the tree balanced
*
- * @return if no insertion happened, the found element
- * if a insertion happened, then either key or NULL is returned (which it is
- * depends on the tree state and the implemenattion, you should make no
- * asumtations that its one or the other in code)
+ * @return If no insertion happened, the found element.
+ * If an insertion happened, then either key or NULL is returned (which one
+ * it is depends on the tree state and the implementation, you should make
+ * no assumptions that it's one or the other in the code).
*/
void *av_tree_insert(struct AVTreeNode **rootp, void *key, int (*cmp)(void *key, const void *b));
void av_tree_destroy(struct AVTreeNode *t);