diff options
author | Josef 'Jeff' Sipek <jeffpc@josefsipek.net> | 2014-04-22 13:16:39 -0400 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2014-04-23 09:26:23 -0700 |
commit | 6907ca4bc759c5fd81b8a60fc5e1a1c7d1972e6a (patch) | |
tree | 725dc4d81de2919dad53af203d5b9274837d1bc0 /usr/src/uts/common | |
parent | a2afb611b30628fb74ad9eade4ae465f9031e262 (diff) | |
download | illumos-joyent-6907ca4bc759c5fd81b8a60fc5e1a1c7d1972e6a.tar.gz |
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>
Diffstat (limited to 'usr/src/uts/common')
-rw-r--r-- | usr/src/uts/common/sys/avl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/sys/avl.h b/usr/src/uts/common/sys/avl.h index ba305c9082..eea9c5558b 100644 --- a/usr/src/uts/common/sys/avl.h +++ b/usr/src/uts/common/sys/avl.h @@ -39,7 +39,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. * @@ -175,7 +175,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 |