diff options
author | Josef 'Jeff' Sipek <[email protected]> | 2015-07-05 20:54:17 +0200 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2015-07-10 11:58:37 -0700 |
commit | 411bf201f5703aa34392f4872ea01bf54c7d3076 (patch) | |
tree | 3ea08763243bad22697c64d2c05a9f4bfec858b7 /include/sys | |
parent | 02f8fe42606c6d7657a7dace24c8efc9b245e500 (diff) |
Illumos 4745 - fix AVL code misspellings
4745 fix AVL code misspellings
Reviewed by: Matthew Ahrens <[email protected]>
Reviewed by: Richard Lowe <[email protected]>
Approved by: Robert Mustacchi <[email protected]>
References:
https://github.com/illumos/illumos-gate/commit/6907ca4
https://www.illumos.org/issues/4745
Ported-by: kernelOfTruth [email protected]
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #3565
Diffstat (limited to 'include/sys')
-rw-r--r-- | include/sys/avl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sys/avl.h b/include/sys/avl.h index 9bc2b4a32..10e0ddaee 100644 --- a/include/sys/avl.h +++ b/include/sys/avl.h @@ -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 |