diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-09-07 18:57:06 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-09-07 18:57:06 +0000 |
commit | e196d37368df8e6de18d4e09417c57c609f42d79 (patch) | |
tree | f44682f5d16f6e1bef5806265dc285f32c2ee55b /lib/libc/stdlib/qsort.3 | |
parent | 066c8a154db03cac36c3631603c9dfa9b5f292c2 (diff) |
typos from Brian Poole;
ok deraadt@
Diffstat (limited to 'lib/libc/stdlib/qsort.3')
-rw-r--r-- | lib/libc/stdlib/qsort.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/qsort.3 b/lib/libc/stdlib/qsort.3 index 2921cbbe69c..0af86067736 100644 --- a/lib/libc/stdlib/qsort.3 +++ b/lib/libc/stdlib/qsort.3 @@ -29,7 +29,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $OpenBSD: qsort.3,v 1.12 2003/06/02 20:18:38 millert Exp $ +.\" $OpenBSD: qsort.3,v 1.13 2003/09/07 18:57:05 jmc Exp $ .\" .Dd June 4, 1993 .Dt QSORT 3 @@ -122,7 +122,7 @@ a variant of selection sorting; in particular, see D.E. Knuth's Algorithm H. .Fn heapsort takes O N lg N worst-case time. This implementation of -.Fn qsort +.Fn heapsort is implemented without recursive function calls. .Pp The function |