From owner-svn-src-all@FreeBSD.ORG Fri Sep 2 18:13:46 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E3A80106564A; Fri, 2 Sep 2011 18:13:46 +0000 (UTC) (envelope-from rse@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D314F8FC0A; Fri, 2 Sep 2011 18:13:46 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p82IDk9T010553; Fri, 2 Sep 2011 18:13:46 GMT (envelope-from rse@svn.freebsd.org) Received: (from rse@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p82IDkEa010551; Fri, 2 Sep 2011 18:13:46 GMT (envelope-from rse@svn.freebsd.org) Message-Id: <201109021813.p82IDkEa010551@svn.freebsd.org> From: "Ralf S. Engelschall" Date: Fri, 2 Sep 2011 18:13:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r225346 - head/share/man/man3 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2011 18:13:47 -0000 Author: rse Date: Fri Sep 2 18:13:46 2011 New Revision: 225346 URL: http://svn.freebsd.org/changeset/base/225346 Log: Fix a little typo and get rid of a cryptic description by aligning the text to the remaining description. Approved by: re Modified: head/share/man/man3/queue.3 Modified: head/share/man/man3/queue.3 ============================================================================== --- head/share/man/man3/queue.3 Fri Sep 2 18:04:26 2011 (r225345) +++ head/share/man/man3/queue.3 Fri Sep 2 18:13:46 2011 (r225346) @@ -193,7 +193,7 @@ O(1) removal of an entry from the head o .It Forward traversal through the list. .It -Swawpping the contents of two lists. +Swapping the contents of two lists. .El .Pp Singly-linked lists are the simplest of the four data structures @@ -227,7 +227,7 @@ Code size is about 15% greater and opera than singly-linked lists. .El .Pp -Singly-linked tailqs are ideal for applications with large datasets and +Singly-linked tail queues are ideal for applications with large datasets and few or no removals, or for implementing a FIFO queue. .Pp