diff options
author | eadler <eadler@FreeBSD.org> | 2012-10-15 13:20:08 +0000 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2012-10-15 13:20:08 +0000 |
commit | 5ef1c68c3e247a26c0b126f87459dec55746119c (patch) | |
tree | ebc4ef5895f42e537e244645198dcac917900fbc /sbin/mount | |
parent | abb735a61bf4ad3dfbbbc6ec97a20b8c4f878b61 (diff) | |
download | FreeBSD-src-5ef1c68c3e247a26c0b126f87459dec55746119c.zip FreeBSD-src-5ef1c68c3e247a26c0b126f87459dec55746119c.tar.gz |
Fix minor nits:
use a comma after "i.e."
sentences begin on new lines.
No .Dd bump for trivial modification.
Approved by: wblock
MFC after: 3 days
Diffstat (limited to 'sbin/mount')
-rw-r--r-- | sbin/mount/getmntopts.3 | 4 | ||||
-rw-r--r-- | sbin/mount/mount.8 | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/sbin/mount/getmntopts.3 b/sbin/mount/getmntopts.3 index b8380ad..48c6940 100644 --- a/sbin/mount/getmntopts.3 +++ b/sbin/mount/getmntopts.3 @@ -70,8 +70,8 @@ has the following format: .Bd -literal struct mntopt { char *m_option; /* option name */ - int m_inverse; /* is this a negative option, e.g. "dev" */ - int m_flag; /* bit to set, e.g. MNT_RDONLY */ + int m_inverse; /* is this a negative option, e.g., "dev" */ + int m_flag; /* bit to set, e.g., MNT_RDONLY */ int m_altloc; /* non-zero to use altflagp rather than flagp */ }; .Ed diff --git a/sbin/mount/mount.8 b/sbin/mount/mount.8 index 593770e..c1ce669 100644 --- a/sbin/mount/mount.8 +++ b/sbin/mount/mount.8 @@ -176,7 +176,8 @@ Force .Nm to use the specified program to mount the file system, instead of calling .Xr nmount 2 -directly. For example: +directly. +For example: .Bd -literal mount -t foofs -o mountprog=/mydir/fooprog /dev/acd0 /mnt .Ed |