diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-05-20 09:13:39 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-05-20 09:13:39 +0000 |
commit | f0d5a31a45039f27fe51cdf45c98dcf8be1ff64d (patch) | |
tree | 27b235683ee9c69bedb04e41c8a10a3949e3c38f /share/man/man3/queue.3 | |
parent | 516f9512495e8ca442a173ea3ccdfda7fbb1ab4a (diff) |
typos;
Diffstat (limited to 'share/man/man3/queue.3')
-rw-r--r-- | share/man/man3/queue.3 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/share/man/man3/queue.3 b/share/man/man3/queue.3 index 9cdfe211565..c6b3a741649 100644 --- a/share/man/man3/queue.3 +++ b/share/man/man3/queue.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: queue.3,v 1.29 2003/05/17 18:40:12 krw Exp $ +.\" $OpenBSD: queue.3,v 1.30 2003/05/20 09:13:38 jmc Exp $ .\" $NetBSD: queue.3,v 1.4 1995/07/03 00:25:36 mycroft Exp $ .\" .\" Copyright (c) 1993 The Regents of the University of California. @@ -299,7 +299,7 @@ However: .Pp .Bl -enum -compact -offset indent .It -Each elements requires two pointers rather than one. +Each element requires two pointers rather than one. .It Code size and execution time of operations (except for removal) is about twice that of the singly-linked data-structures. @@ -454,7 +454,7 @@ of the list pointed by .Fa head . .Pp The -.Fn SLIST_FIRST , +.Fn SLIST_FIRST and .Fn SLIST_NEXT macros can be used to traverse the list: @@ -561,7 +561,7 @@ with the new element .Fa elm2 . .Pp The -.Fn LIST_FIRST , +.Fn LIST_FIRST and .Fn LIST_NEXT macros can be used to traverse the list: @@ -680,13 +680,13 @@ macro removes the first element from the queue. .Pp The -.Fn SIMPLEQ_FIRST , +.Fn SIMPLEQ_FIRST and .Fn SIMPLEQ_NEXT macros can be used to traverse the queue. The .Fn SIMPLEQ_FOREACH -is used for queue traversal +is used for queue traversal: .Bd -literal -offset indent SIMPLEQ_FOREACH(np, head, NAME) .Ed @@ -947,7 +947,7 @@ and macros can be used to traverse a circular queue. The .Fn CIRCLEQ_FOREACH -is used for circular queue forward traversal +is used for circular queue forward traversal: .Bd -literal -offset indent CIRCLEQ_FOREACH(np, head, NAME) .Ed |