aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiten Pandya <hmp@FreeBSD.org>2003-10-23 01:31:25 +0000
committerHiten Pandya <hmp@FreeBSD.org>2003-10-23 01:31:25 +0000
commitcd367b32edd853c2293ca58a0316c13434a5a690 (patch)
tree5804315ae8517d6bb4e7fccbf1207aa885f1429a
parentce91e62bc669113b1520ae0b34e3ea3f4ca5e0ec (diff)
Mdoc Janitor:
* Fix hard sentence breaks. * Correct use of a period in DELAY(9).
Notes
Notes: svn path=/head/; revision=121379
-rw-r--r--share/man/man9/BUS_PRINT_CHILD.96
-rw-r--r--share/man/man9/BUS_READ_IVAR.93
-rw-r--r--share/man/man9/DELAY.92
-rw-r--r--share/man/man9/DEVICE_DETACH.93
-rw-r--r--share/man/man9/DEVICE_PROBE.96
-rw-r--r--share/man/man9/MD5.94
6 files changed, 15 insertions, 9 deletions
diff --git a/share/man/man9/BUS_PRINT_CHILD.9 b/share/man/man9/BUS_PRINT_CHILD.9
index 1f0c5d4d692a..5d1dab244819 100644
--- a/share/man/man9/BUS_PRINT_CHILD.9
+++ b/share/man/man9/BUS_PRINT_CHILD.9
@@ -41,8 +41,10 @@
.Fn BUS_PRINT_CHILD "device_t dev" "device_t child"
.Sh DESCRIPTION
This is called from system code which prints out a description of a
-device. It should describe the attachment that the child has with
-the parent. For instance the TurboLaser bus prints which node the
+device.
+It should describe the attachment that the child has with
+the parent.
+For instance the TurboLaser bus prints which node the
device is attached to.
Please see
.Xr bus_generic_print_child 9
diff --git a/share/man/man9/BUS_READ_IVAR.9 b/share/man/man9/BUS_READ_IVAR.9
index 1fe90eea5f04..0b7d1e9469a0 100644
--- a/share/man/man9/BUS_READ_IVAR.9
+++ b/share/man/man9/BUS_READ_IVAR.9
@@ -44,7 +44,8 @@
.Fn BUS_WRITE_IVAR "device_t dev" "device_t child" "int index" "uintptr_t value"
.Sh DESCRIPTION
These two methods manage a bus specific set of instance variables of
-a child device. The intention is that each different type of bus
+a child device.
+The intention is that each different type of bus
defines a set of appropriate instance variables (such as ports and
irqs for ISA bus etc.)
.Pp
diff --git a/share/man/man9/DELAY.9 b/share/man/man9/DELAY.9
index e5e84dddf9b2..a8e059b9d530 100644
--- a/share/man/man9/DELAY.9
+++ b/share/man/man9/DELAY.9
@@ -41,7 +41,7 @@
.Sh DESCRIPTION
Delay for
.Fa delay
-microseconds. (1/1000000th of a second)
+microseconds (1/1000000th of a second).
.Sh AUTHORS
This man page was written by
.An Alfred Perlstein .
diff --git a/share/man/man9/DEVICE_DETACH.9 b/share/man/man9/DEVICE_DETACH.9
index 11eb61b78ce8..7ff379af4fe0 100644
--- a/share/man/man9/DEVICE_DETACH.9
+++ b/share/man/man9/DEVICE_DETACH.9
@@ -40,7 +40,8 @@
.Ft int
.Fn DEVICE_DETACH "device_t dev"
.Sh DESCRIPTION
-Detach a device. This can be called if the user is replacing the
+Detach a device.
+This can be called if the user is replacing the
driver software or if a device is about to be physically removed from
the system (e.g. for pccard devices).
.Pp
diff --git a/share/man/man9/DEVICE_PROBE.9 b/share/man/man9/DEVICE_PROBE.9
index 08b2d9686ba3..daac5020308f 100644
--- a/share/man/man9/DEVICE_PROBE.9
+++ b/share/man/man9/DEVICE_PROBE.9
@@ -48,8 +48,10 @@ If some other error happens during the probe (such as a memory
allocation failure), an appropriate error code should be returned.
For
cases where more than one driver matches a device, a priority value can
-be returned. In this case, success codes are values less than or equal
-to zero with the highest value representing the best match. Failure
+be returned.
+In this case, success codes are values less than or equal
+to zero with the highest value representing the best match.
+Failure
codes are represented by positive values and the regular
.Ux
error
diff --git a/share/man/man9/MD5.9 b/share/man/man9/MD5.9
index d59852072b8e..4a85e144abf5 100644
--- a/share/man/man9/MD5.9
+++ b/share/man/man9/MD5.9
@@ -73,6 +73,6 @@ argument.
.El
.Sh COPYRIGHTS
The code for MD5 transform was taken from Colin Plumb's
-implementation, which has been placed in the public domain. The
-MD5 cryptographic checksum was devised by Ronald Rivest, and is
+implementation, which has been placed in the public domain.
+The MD5 cryptographic checksum was devised by Ronald Rivest, and is
documented in RFC 1321, "The MD5 Message Digest Algorithm".