summaryrefslogtreecommitdiff
path: root/share/man/man3/queue.3
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2006-01-11 09:07:55 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2006-01-11 09:07:55 +0000
commit59570e2f0a15b0efa363389c18e7dc6a2063e367 (patch)
treefa7f17361a3a6c7af49303354fe8a89c1129bba4 /share/man/man3/queue.3
parent8f55f5200689657b104e9d57ead1bed1cf8e1156 (diff)
missing full stop; from ray lai
Diffstat (limited to 'share/man/man3/queue.3')
-rw-r--r--share/man/man3/queue.34
1 files changed, 2 insertions, 2 deletions
diff --git a/share/man/man3/queue.3 b/share/man/man3/queue.3
index 8b69c6bcd6c..b651cdcba15 100644
--- a/share/man/man3/queue.3
+++ b/share/man/man3/queue.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: queue.3,v 1.39 2006/01/06 08:48:06 jmc Exp $
+.\" $OpenBSD: queue.3,v 1.40 2006/01/11 09:07:54 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.
@@ -865,7 +865,7 @@ TAILQ_INSERT_BEFORE(n1, n2, entries);
/* Forward traversal. */
TAILQ_FOREACH(np, &head, entries)
np-> ...
- /* Manual forward traversal */
+ /* Manual forward traversal. */
for (np = n2; np != NULL; np = TAILQ_NEXT(np, entries))
np-> ...
/* Delete. */