Fixed lots of small nits caught by Ka-Ping Yee <ping@lfw.org>.

This commit is contained in:
Fred Drake 2000-10-10 17:03:45 +00:00
parent 2d34cd3ecf
commit f8ca7d88c6
16 changed files with 40 additions and 38 deletions

View file

@ -1,11 +1,10 @@
\section{\module{Queue} ---
A synchronized queue class.}
A synchronized queue class}
\declaremodule{standard}{Queue}
\modulesynopsis{A synchronized queue class.}
The \module{Queue} module implements a multi-producer, multi-consumer
FIFO queue. It is especially useful in threads programming when
information must be exchanged safely between multiple threads. The