From owner-svn-src-head@FreeBSD.ORG Mon Oct 15 13:20:09 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3E08686E; Mon, 15 Oct 2012 13:20:09 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 260FF8FC0A; Mon, 15 Oct 2012 13:20:09 +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 q9FDK91T096139; Mon, 15 Oct 2012 13:20:09 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9FDK8Mi096136; Mon, 15 Oct 2012 13:20:08 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210151320.q9FDK8Mi096136@svn.freebsd.org> From: Eitan Adler Date: Mon, 15 Oct 2012 13:20:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r241581 - head/sbin/mount X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Oct 2012 13:20:09 -0000 Author: eadler Date: Mon Oct 15 13:20:08 2012 New Revision: 241581 URL: http://svn.freebsd.org/changeset/base/241581 Log: 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 Modified: head/sbin/mount/getmntopts.3 head/sbin/mount/mount.8 Modified: head/sbin/mount/getmntopts.3 ============================================================================== --- head/sbin/mount/getmntopts.3 Mon Oct 15 12:33:53 2012 (r241580) +++ head/sbin/mount/getmntopts.3 Mon Oct 15 13:20:08 2012 (r241581) @@ -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 Modified: head/sbin/mount/mount.8 ============================================================================== --- head/sbin/mount/mount.8 Mon Oct 15 12:33:53 2012 (r241580) +++ head/sbin/mount/mount.8 Mon Oct 15 13:20:08 2012 (r241581) @@ -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