diff options
author | ru <ru@FreeBSD.org> | 2000-11-06 15:46:57 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2000-11-06 15:46:57 +0000 |
commit | ff45078d39466043bd69d792566d5f84246d28b7 (patch) | |
tree | f583f73192d169461ab19a0239dd9dbe855f1468 /lib/libc/stdlib | |
parent | a4136ed05a910d54515deabfae030ba541e6a8ed (diff) | |
download | FreeBSD-src-ff45078d39466043bd69d792566d5f84246d28b7.zip FreeBSD-src-ff45078d39466043bd69d792566d5f84246d28b7.tar.gz |
Fixed typos.
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/tsearch.3 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/stdlib/tsearch.3 b/lib/libc/stdlib/tsearch.3 index 4dcf658..913714c 100644 --- a/lib/libc/stdlib/tsearch.3 +++ b/lib/libc/stdlib/tsearch.3 @@ -36,11 +36,11 @@ .Sh SYNOPSIS .Fd #include <search.h> .Ft void * -.Fn tdelete "const void *key" "void **rootp", "int (*compar) (const void *, const void *)" +.Fn tdelete "const void *key" "void **rootp" "int (*compar) (const void *, const void *)" .Ft void * -.Fn tfind "const void *key" "const void **rootp", "int (*compar) (const void *, const void *)" +.Fn tfind "const void *key" "const void **rootp" "int (*compar) (const void *, const void *)" .Ft void * -.Fn tsearch "const void *key", "void **rootp", "int (*compar) (const void *, const void *)" +.Fn tsearch "const void *key", "void **rootp" "int (*compar) (const void *, const void *)" .Ft void .Fn twalk "const void *root" "void (*compar) (const void *, VISIT, int)" .Sh DESCRIPTION @@ -85,7 +85,7 @@ will be adjusted. .Pp .Fn Twalk walks the binary search tree rooted in -.fa root +.Fa root and calls the function .Fa action on each node. |