Illumos 4745 - fix AVL code misspellings

4745 fix AVL code misspellings
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed by: Richard Lowe <richlowe@richlowe.net>
Approved by: Robert Mustacchi <rm@joyent.com>

References:
  https://github.com/illumos/illumos-gate/commit/6907ca4
  https://www.illumos.org/issues/4745

Ported-by: kernelOfTruth kerneloftruth@gmail.com
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #3565
This commit is contained in:
Josef 'Jeff' Sipek
2015-07-05 20:54:17 +02:00
committed by Brian Behlendorf
parent 02f8fe4260
commit 411bf201f5
2 changed files with 8 additions and 7 deletions
+2 -2
View File
@@ -43,7 +43,7 @@ extern "C" {
#include <sys/avl_impl.h>
/*
* This is a generic implemenatation of AVL trees for use in the Solaris kernel.
* This is a generic implementation of AVL trees for use in the Solaris kernel.
* The interfaces provide an efficient way of implementing an ordered set of
* data structures.
*
@@ -179,7 +179,7 @@ extern void avl_insert(avl_tree_t *tree, void *node, avl_index_t where);
* Insert "new_data" in "tree" in the given "direction" either after
* or before the data "here".
*
* This might be usefull for avl clients caching recently accessed
* This might be useful for avl clients caching recently accessed
* data to avoid doing avl_find() again for insertion.
*
* new_data - new data to insert