Subject: misc/30738: minor sys/queue.h syntax nit in SIMPLEQ_* comment
To: None <misc-bug-people@netbsd.org, gnats-admin@netbsd.org,>
From: None <keramida@freebsd.org>
List: netbsd-bugs
Date: 07/12/2005 22:38:00
>Number: 30738
>Category: misc
>Synopsis: minor sys/queue.h syntax nit in SIMPLEQ_* comment
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: misc-bug-people
>State: open
>Class: sw-bug
>Submitter-Id: net
>Arrival-Date: Tue Jul 12 22:38:00 +0000 2005
>Originator: Giorgos Keramidas
>Release:
>Organization:
>Environment:
>Description:
The src/sys/sys/queue.h header contains a minor syntax mistake, that I noticed while running diff(1) on the queue.h headers of the various BSDs:
%%%
* A simple queue is headed by a pair of pointers, one the head of the
* list and the other to the tail of the list. The elements are singly
- * linked to save space, so only elements can only be removed from the
- * head of the list. New elements can be added to the list after
+ * linked to save space, so elements can only be removed from the
+ * head of the list. New elements can be added to the list before or after
* an existing element, at the head of the list, or at the end of the
* list. A simple queue may only be traversed in the forward direction.
%%%
>How-To-Repeat:
>Fix: