diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2001-12-11 11:49:58 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2001-12-11 11:49:58 +0000 |
commit | b7ccf7682354416b1052b26aeb5c0daefd8ad3b3 (patch) | |
tree | 1fca8288a45f37e196d95e26a5008b8ddb9b172e /sys | |
parent | 2e77fc4d022e91c45370617f8b47534da20d86d0 (diff) | |
download | FreeBSD-src-b7ccf7682354416b1052b26aeb5c0daefd8ad3b3.zip FreeBSD-src-b7ccf7682354416b1052b26aeb5c0daefd8ad3b3.tar.gz |
Correct a comment that should have been updated in rev 1.43, when
CIRCLEQ was removed.
PR: kern/32688
Submitted by: Jordan DeLong <fracture@allusion.net>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/queue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/queue.h b/sys/sys/queue.h index be9b0c5..dc5c2ba 100644 --- a/sys/sys/queue.h +++ b/sys/sys/queue.h @@ -40,8 +40,8 @@ #include <machine/ansi.h> /* for __offsetof */ /* - * This file defines five types of data structures: singly-linked lists, - * singly-linked tail queues, lists, tail queues, and circular queues. + * This file defines four types of data structures: singly-linked lists, + * singly-linked tail queues, lists and tail queues. * * A singly-linked list is headed by a single forward pointer. The elements * are singly linked for minimum space and pointer manipulation overhead at |