Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Feb 2012 14:31:26 +0000 (UTC)
From:      Glen Barber <gjb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r232157 - in head: bin/expr lib/libc/sys lib/libmemstat lib/libpmc lib/libusb lib/libutil lib/libvgl sbin/iscontrol share/man/man3 share/man/man4 share/man/man5 share/man/man9 sys/boot/...
Message-ID:  <201202251431.q1PEVQ6s021325@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gjb (doc committer)
Date: Sat Feb 25 14:31:25 2012
New Revision: 232157
URL: http://svn.freebsd.org/changeset/base/232157

Log:
  Fix various typos in manual pages.
  
  Submitted by:	amdmi3
  PR:		165431
  MFC after:	1 week

Modified:
  head/bin/expr/expr.1
  head/lib/libc/sys/cap_enter.2
  head/lib/libc/sys/pdfork.2
  head/lib/libc/sys/posix_fadvise.2
  head/lib/libc/sys/posix_fallocate.2
  head/lib/libmemstat/libmemstat.3
  head/lib/libpmc/pmc.mips.3
  head/lib/libpmc/pmc.westmere.3
  head/lib/libusb/libusb.3
  head/lib/libutil/kinfo_getproc.3
  head/lib/libvgl/vgl.3
  head/sbin/iscontrol/iscsi.conf.5
  head/share/man/man3/pthread_getthreadid_np.3
  head/share/man/man4/acpi_panasonic.4
  head/share/man/man4/cxgbe.4
  head/share/man/man4/ed.4
  head/share/man/man4/mac_lomac.4
  head/share/man/man4/umcs.4
  head/share/man/man4/vr.4
  head/share/man/man5/rc.conf.5
  head/share/man/man9/kqueue.9
  head/share/man/man9/zone.9
  head/sys/boot/forth/menu.4th.8

Modified: head/bin/expr/expr.1
==============================================================================
--- head/bin/expr/expr.1	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/bin/expr/expr.1	Sat Feb 25 14:31:25 2012	(r232157)
@@ -30,7 +30,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd September 9, 2010
+.Dd February 25, 2012
 .Dt EXPR 1
 .Os
 .Sh NAME
@@ -52,7 +52,7 @@ Several of the operators have special me
 and must therefore be quoted appropriately.
 All integer operands are interpreted in base 10 and must consist of only
 an optional leading minus sign followed by one or more digits (unless
-less strict parsing has been enabled for backwards compatibilty with
+less strict parsing has been enabled for backwards compatibility with
 prior versions of
 .Nm
 in
@@ -284,7 +284,7 @@ An empty operand string is interpreted a
 .Bl -bullet
 .It
 Leading white space and/or a plus sign before an otherwise valid positive
-numberic operand are allowed and will be ignored.
+numeric operand are allowed and will be ignored.
 .El
 .Pp
 The extended arithmetic range and overflow checks do not conflict with

Modified: head/lib/libc/sys/cap_enter.2
==============================================================================
--- head/lib/libc/sys/cap_enter.2	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/lib/libc/sys/cap_enter.2	Sat Feb 25 14:31:25 2012	(r232157)
@@ -28,7 +28,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd June 11, 2009
+.Dd February 25, 2012
 .Dt CAP_ENTER 2
 .Os
 .Sh NAME
@@ -68,7 +68,7 @@ appropriately-crafted applications or ap
 returns a flag indicating whether or not the process is in a capability mode
 sandbox.
 .Sh CAVEAT
-Creating effecive process sandboxes is a tricky process that involves
+Creating effective process sandboxes is a tricky process that involves
 identifying the least possible rights required by the process and then
 passing those rights into the process in a safe manner.
 See the CAVEAT

Modified: head/lib/libc/sys/pdfork.2
==============================================================================
--- head/lib/libc/sys/pdfork.2	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/lib/libc/sys/pdfork.2	Sat Feb 25 14:31:25 2012	(r232157)
@@ -28,7 +28,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd August 16, 2011
+.Dd February 25, 2012
 .Dt PDFORK 2
 .Os
 .Sh NAME
@@ -87,7 +87,7 @@ except that it accepts a process descrip
 rather than a PID.
 .Pp
 .Fn pdwait4
-behaves identially to
+behaves identically to
 .Xr wait4 2 ,
 but operates with respect to a process descriptor argument rather than a PID.
 .Pp

Modified: head/lib/libc/sys/posix_fadvise.2
==============================================================================
--- head/lib/libc/sys/posix_fadvise.2	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/lib/libc/sys/posix_fadvise.2	Sat Feb 25 14:31:25 2012	(r232157)
@@ -28,7 +28,7 @@
 .\"	@(#)madvise.2	8.1 (Berkeley) 6/9/93
 .\" $FreeBSD$
 .\"
-.Dd October 26, 2011
+.Dd February 25, 2012
 .Dt POSIX_FADVISE 2
 .Os
 .Sh NAME
@@ -74,7 +74,7 @@ This currently does nothing as the defau
 detect sequential behavior.
 .It Dv POSIX_FADV_WILLNEED
 Tells the system that the specified data will be accessed in the near future.
-The system may initiate an asychronous read of the data if it is not already
+The system may initiate an asynchronous read of the data if it is not already
 present in memory.
 .It Dv POSIX_FADV_DONTNEED
 Tells the system that the specified data will not be accessed in the near

Modified: head/lib/libc/sys/posix_fallocate.2
==============================================================================
--- head/lib/libc/sys/posix_fallocate.2	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/lib/libc/sys/posix_fallocate.2	Sat Feb 25 14:31:25 2012	(r232157)
@@ -28,7 +28,7 @@
 .\"     @(#)open.2	8.2 (Berkeley) 11/16/93
 .\" $FreeBSD$
 .\"
-.Dd April 13, 2011
+.Dd February 25, 2012
 .Dt POSIX_FALLOCATE 2
 .Os
 .Sh NAME
@@ -48,7 +48,7 @@ to
 .Fa len
 in the file referenced by
 .Fa fd
-is guarateed to be allocated upon successful return.
+is guaranteed to be allocated upon successful return.
 That is, if
 .Fn posix_fallocate
 returns successfully, subsequent writes to the specified file data

Modified: head/lib/libmemstat/libmemstat.3
==============================================================================
--- head/lib/libmemstat/libmemstat.3	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/lib/libmemstat/libmemstat.3	Sat Feb 25 14:31:25 2012	(r232157)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd July 21, 2011
+.Dd February 25, 2012
 .Dt LIBMEMSTAT 3
 .Os
 .Sh NAME
@@ -345,7 +345,7 @@ Return a caller-owned per-CPU pointer fo
 Set a caller-owned per-CPU pointer for the memory type.
 .It Fn memstat_get_percpu_caller_uint64
 Return a caller-owned per-CPU integer for the memory type.
-.It Fn memsttat_set_percpu_caller_uint64
+.It Fn memstat_set_percpu_caller_uint64
 Set a caller-owned per-CPU integer for the memory type.
 .It Fn memstat_get_percpu_free
 If the memory allocator supports a per-CPU cache, return the number of free

Modified: head/lib/libpmc/pmc.mips.3
==============================================================================
--- head/lib/libpmc/pmc.mips.3	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/lib/libpmc/pmc.mips.3	Sat Feb 25 14:31:25 2012	(r232157)
@@ -23,7 +23,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd February 11, 2010
+.Dd February 25, 2012
 .Dt PMC.MIPS 3
 .Os
 .Sh NAME
@@ -166,7 +166,7 @@ This includes all instructions that norm
 purpose register, but where the destination register was set to r0.
 .It Li INTEGER_MULDIV_COMPLETED
 .Pq Event 17, Counter 1
-Integer multipy and divide instructions completed.  (MULxx, DIVx, MADDx, MSUBx).
+Integer multiply and divide instructions completed.  (MULxx, DIVx, MADDx, MSUBx).
 .It Li RF_STALL
 .Pq Event 18, Counter 0
 Counts the total number of cycles where no instructions are issued

Modified: head/lib/libpmc/pmc.westmere.3
==============================================================================
--- head/lib/libpmc/pmc.westmere.3	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/lib/libpmc/pmc.westmere.3	Sat Feb 25 14:31:25 2012	(r232157)
@@ -23,7 +23,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd March 24, 2010
+.Dd February 25, 2012
 .Dt PMC.WESTMERE 3
 .Os
 .Sh NAME
@@ -643,7 +643,7 @@ Counter 0.
 .Pq Event 60H , Umask 08H
 Counts weighted cycles of offcore read requests of any kind. Include L2
 prefetch requests.
-Ccounter 0.
+Counter 0.
 .It Li CACHE_LOCK_CYCLES.L1D_L2
 .Pq Event 63H , Umask 01H
 Cycle count during which the L1D and L2 are locked. A lock is asserted when

Modified: head/lib/libusb/libusb.3
==============================================================================
--- head/lib/libusb/libusb.3	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/lib/libusb/libusb.3	Sat Feb 25 14:31:25 2012	(r232157)
@@ -26,7 +26,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd November 9, 2011
+.Dd February 25, 2012
 .Dt LIBUSB 3
 .Os
 .Sh NAME
@@ -483,7 +483,7 @@ on success and a LIBUSB_ERROR code on fa
 .Pp
 .Ft int
 .Fn libusb_handle_events_locked "libusb_context *ctx" "struct timeval *tv"
-Handle any pending events by polling file desciptors, without checking if
+Handle any pending events by polling file descriptors, without checking if
 another thread is already doing so.
 Must be called with the event lock held.
 .Pp

Modified: head/lib/libutil/kinfo_getproc.3
==============================================================================
--- head/lib/libutil/kinfo_getproc.3	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/lib/libutil/kinfo_getproc.3	Sat Feb 25 14:31:25 2012	(r232157)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd July 9, 2009
+.Dd February 25, 2012
 .Os
 .Dt KINFO_GETPROC 3
 .Sh NAME
@@ -44,7 +44,7 @@ This function is used for obtaining proc
 The
 .Ar pid
 field contains the process identifier.
-This should be the a process that you have privilige to access.
+This should be a process that you have privilege to access.
 This function is a wrapper around
 .Xr sysctl 3
 with the

Modified: head/lib/libvgl/vgl.3
==============================================================================
--- head/lib/libvgl/vgl.3	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/lib/libvgl/vgl.3	Sat Feb 25 14:31:25 2012	(r232157)
@@ -26,7 +26,7 @@
 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 .\"
 .\" $FreeBSD$
-.Dd November 7, 1999
+.Dd February 25, 2012
 .Dt VGL 3
 .Os
 .Sh NAME
@@ -386,7 +386,7 @@ Passing an in-memory bitmap to this func
 The desired virtual screen width may not be achievable because
 of the video card hardware.
 In such case the video driver (and
-underlaying video BIOS) may choose the next largest values.
+underlying video BIOS) may choose the next largest values.
 Always examine
 .Va object->VXsize
 and

Modified: head/sbin/iscontrol/iscsi.conf.5
==============================================================================
--- head/sbin/iscontrol/iscsi.conf.5	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/sbin/iscontrol/iscsi.conf.5	Sat Feb 25 14:31:25 2012	(r232157)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd June 5, 2007
+.Dd February 25, 2012
 .Dt ISCSI.CONF 5
 .Os
 .Sh NAME
@@ -113,7 +113,7 @@ bytes it can receive in an iSCSI PDU, de
 .It Cm MaxOutstandingR2T
 is used to calculate/negotiate the
 .Em tag opening ,
-can be overriden by the
+can be overridden by the
 .Sy tag
 option.
 .It Cm DataPDUInOrder

Modified: head/share/man/man3/pthread_getthreadid_np.3
==============================================================================
--- head/share/man/man3/pthread_getthreadid_np.3	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/share/man/man3/pthread_getthreadid_np.3	Sat Feb 25 14:31:25 2012	(r232157)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd February 7, 2011
+.Dd February 25, 2012
 .Dt PTHREAD_GETTHREADID_NP 3
 .Os
 .Sh NAME
@@ -42,7 +42,7 @@ The
 function returns the unique integral ID of the calling thread.
 Its semantics is similar to the AIX's
 .Fn pthread_getthreadid_np
-functuion.
+function.
 .Sh RETURN VALUES
 The
 .Fn pthread_getthreadid_np

Modified: head/share/man/man4/acpi_panasonic.4
==============================================================================
--- head/share/man/man4/acpi_panasonic.4	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/share/man/man4/acpi_panasonic.4	Sat Feb 25 14:31:25 2012	(r232157)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd February 8, 2010
+.Dd February 25, 2012
 .Dt ACPI_PANASONIC 4
 .Os
 .Sh NAME
@@ -66,7 +66,7 @@ The third and last is to provide a way t
 sound mute state via
 .Xr sysctl 8 .
 .Ss Hotkeys
-There are 9 hotkeys available on the supported hardwares:
+There are 9 hotkeys available on the supported hardware:
 .Pp
 .Bl -tag -compact -offset indent
 .It Sy Fn+F1

Modified: head/share/man/man4/cxgbe.4
==============================================================================
--- head/share/man/man4/cxgbe.4	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/share/man/man4/cxgbe.4	Sat Feb 25 14:31:25 2012	(r232157)
@@ -31,7 +31,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd February 14, 2011
+.Dd February 25, 2012
 .Dt CXGBE 4
 .Os
 .Sh NAME
@@ -56,7 +56,7 @@ The
 .Nm
 driver provides support for PCI Express Ethernet adapters based on
 the Chelsio Terminator 4 (T4) ASIC.
-The driver supprts Jumbo Frames, Transmit/Receive checksum offload,
+The driver supports Jumbo Frames, Transmit/Receive checksum offload,
 TCP segmentation offload (TSO), Large Receive Offload (LRO), VLAN
 tag insertion/extraction, VLAN checksum offload, VLAN TSO, and
 Receive Side Steering (RSS).

Modified: head/share/man/man4/ed.4
==============================================================================
--- head/share/man/man4/ed.4	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/share/man/man4/ed.4	Sat Feb 25 14:31:25 2012	(r232157)
@@ -30,7 +30,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd February 8, 2012
+.Dd February 25, 2012
 .Dt ED 4
 .Os
 .Sh NAME
@@ -289,7 +289,7 @@ Surecom EtherPerfect EP-427
 .It
 Surecom NE-34
 .It
-TDK 3000/3400/5670 Fast Etherenet/Modem
+TDK 3000/3400/5670 Fast Ethernet/Modem
 .It
 TDK LAK-CD031, Grey Cell GCS2000 Ethernet Card
 .It

Modified: head/share/man/man4/mac_lomac.4
==============================================================================
--- head/share/man/man4/mac_lomac.4	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/share/man/man4/mac_lomac.4	Sat Feb 25 14:31:25 2012	(r232157)
@@ -30,7 +30,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd December 11, 2002
+.Dd February 25, 2012
 .Dt MAC_LOMAC 4
 .Os
 .Sh NAME
@@ -63,7 +63,7 @@ which protects the integrity of system o
 an information flow policy coupled with the subject demotion
 via floating labels.
 In LOMAC, all system subjects and objects are assigned integrity labels, made
-up of one or more hierarchial grades, depending on the their types.
+up of one or more hierarchical grades, depending on the their types.
 Together, these label elements permit all labels to be placed in a partial
 order, with information flow protections and demotion decisions
 based on a dominance operator

Modified: head/share/man/man4/umcs.4
==============================================================================
--- head/share/man/man4/umcs.4	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/share/man/man4/umcs.4	Sat Feb 25 14:31:25 2012	(r232157)
@@ -28,7 +28,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd November 20, 2011
+.Dd February 25, 2012
 .Dt UMCS 4
 .Os
 .Sh NAME
@@ -56,7 +56,7 @@ The
 driver provides support for various multiport serial adapters based on the MosCom
 MCS7820 and MCS7840 chips. They are 2- or 4-port adapters with full-featured
 16550-compatible UARTs and very flexible baud generators. Also, these chips
-support RS422/RS485 and IrDA oprations.
+support RS422/RS485 and IrDA operations.
 .Pp
 The device is accessed through the
 .Xr ucom 4

Modified: head/share/man/man4/vr.4
==============================================================================
--- head/share/man/man4/vr.4	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/share/man/man4/vr.4	Sat Feb 25 14:31:25 2012	(r232157)
@@ -30,7 +30,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd February 7, 2010
+.Dd February 25, 2012
 .Dt VR 4
 .Os
 .Sh NAME
@@ -94,7 +94,7 @@ or
 .Ar half-duplex
 modes.
 .It 100baseTX
-Set 100Mbps (Fast Fthernet) operation.
+Set 100Mbps (Fast Ethernet) operation.
 The
 .Ar mediaopt
 option can also be used to select either

Modified: head/share/man/man5/rc.conf.5
==============================================================================
--- head/share/man/man5/rc.conf.5	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/share/man/man5/rc.conf.5	Sat Feb 25 14:31:25 2012	(r232157)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd February 11, 2012
+.Dd February 25, 2012
 .Dt RC.CONF 5
 .Os
 .Sh NAME
@@ -1427,7 +1427,7 @@ Note that ICMPv6 Router Advertisement me
 accepted even when
 .Va net.inet6.ip6.forwarding
 is 1
-.Pq packet fowarding is enabled
+.Pq packet forwarding is enabled
 when
 .Va net.inet6.ip6.rfc6204w3
 is set to 1.

Modified: head/share/man/man9/kqueue.9
==============================================================================
--- head/share/man/man9/kqueue.9	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/share/man/man9/kqueue.9	Sat Feb 25 14:31:25 2012	(r232157)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd November 5, 2011
+.Dd February 25, 2012
 .Dt KQUEUE 9
 .Os
 .Sh NAME
@@ -294,7 +294,7 @@ locks will be used instead.
 .Pp
 The function
 .Fn knlist_init_mtx
-may be used to initalize a
+may be used to initialize a
 .Vt knlist
 when
 .Fa lock

Modified: head/share/man/man9/zone.9
==============================================================================
--- head/share/man/man9/zone.9	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/share/man/man9/zone.9	Sat Feb 25 14:31:25 2012	(r232157)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd October 9, 2010
+.Dd February 25, 2012
 .Dt ZONE 9
 .Os
 .Sh NAME
@@ -210,7 +210,7 @@ The
 .Fn uma_zone_get_cur
 function returns the approximate current occupancy of the zone.
 The returned value is approximate because appropriate synchronisation to
-determine an exact value is not performend by the implementation.
+determine an exact value is not performed by the implementation.
 This ensures low overhead at the expense of potentially stale data being used
 in the calculation.
 .Sh RETURN VALUES

Modified: head/sys/boot/forth/menu.4th.8
==============================================================================
--- head/sys/boot/forth/menu.4th.8	Sat Feb 25 12:06:40 2012	(r232156)
+++ head/sys/boot/forth/menu.4th.8	Sat Feb 25 14:31:25 2012	(r232157)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd Dec 27, 2011
+.Dd February 25, 2012
 .Dt MENU.4TH 8
 .Os
 .Sh NAME
@@ -90,7 +90,7 @@ causes the menu to be displayed in color
 use of ANSI bold for numbers appearing to the left of menuitems and the use of
 special
 .Dq Li ansi
-variables describd below.
+variables described below.
 .It Va autoboot_delay
 Number of seconds
 .Ic menu-display



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201202251431.q1PEVQ6s021325>