Linux Device Mapper development
 help / color / mirror / Atom feed
From: Christophe Varoqui <christophe.varoqui@gmail.com>
To: Ritesh Raj Sarraf <rrs@debian.org>
Cc: dm-devel@redhat.com
Subject: Re: [PATCH 2/3] Minor spelling error fixes for Debian's lintian cleanliness
Date: Sat, 12 Jan 2013 14:14:01 +0100	[thread overview]
Message-ID: <1357996441.4263.13.camel@lapoo.opensvc.com> (raw)
In-Reply-To: <1357725956-24346-3-git-send-email-rrs@debian.org>

On mer., 2013-01-09 at 15:35 +0530, Ritesh Raj Sarraf wrote:
> fix missed-out hyphen
> 
Merged.

> Signed-off-by: Ritesh Raj Sarraf <rrs@debian.org>
> ---
>  kpartx/kpartx.8            |    8 ++++----
>  multipath/main.c           |    2 +-
>  multipath/multipath.conf.5 |    8 ++++----
>  multipathd/multipathd.8    |    4 ++--
>  4 files changed, 11 insertions(+), 11 deletions(-)
> 
> diff --git a/kpartx/kpartx.8 b/kpartx/kpartx.8
> index 8a37d4f..021ddc0 100644
> --- a/kpartx/kpartx.8
> +++ b/kpartx/kpartx.8
> @@ -18,7 +18,7 @@ creation and deletion.
>  Add partition mappings
>  .TP
>  .B \-r
> -Readonly partition mappings
> +Read-only partition mappings
>  .TP
>  .B \-d
>  Delete partition mappings
> @@ -27,7 +27,7 @@ Delete partition mappings
>  Update partition mappings
>  .TP
>  .B \-l
> -List partition mappings that would be added -a
> +List partition mappings that would be added \-a
>  .TP
>  .B \-p
>  set device name-partition number delimiter
> @@ -46,7 +46,7 @@ Sync mode. Don't return until the partitions are created
>  .SH EXAMPLE
>  To mount all the partitions in a raw disk image:
>  .IP
> -kpartx -av disk.img
> +kpartx \-av disk.img
>  .PP
>  This will output lines such as:
>  .IP
> @@ -62,7 +62,7 @@ fsck /dev/mapper/loop3p1
>  .PP
>  When you're done, you need to remove the devices:
>  .IP
> -kpartx -d disk.img
> +kpartx \-d disk.img
>  .SH "SEE ALSO"
>  .BR multipath (8)
>  .BR multipathd (8)
> diff --git a/multipath/main.c b/multipath/main.c
> index 396c4b9..0083ef4 100644
> --- a/multipath/main.c
> +++ b/multipath/main.c
> @@ -504,7 +504,7 @@ main (int argc, char *argv[])
>  			usage(argv[0]);
>  			exit(0);
>  		case ':':
> -			fprintf(stderr, "Missing option arguement\n");
> +			fprintf(stderr, "Missing option argument\n");
>  			usage(argv[0]);
>  			exit(1);
>  		case '?':
> diff --git a/multipath/multipath.conf.5 b/multipath/multipath.conf.5
> index 92fb0c1..eb96c61 100644
> --- a/multipath/multipath.conf.5
> +++ b/multipath/multipath.conf.5
> @@ -301,7 +301,7 @@ to assign a persistent and unique alias to the multipath, in the form of mpath<n
>  If set to 
>  .I no
>  use the WWID as the alias. In either case this be will
> -be overriden by any specific aliases in the \fImultipaths\fR section.
> +be overridden by any specific aliases in the \fImultipaths\fR section.
>  Default is
>  .I no
>  .TP
> @@ -314,7 +314,7 @@ deleted. Default is
>  .TP
>  .B max_fds
>  Specify the maximum number of file descriptors that can be opened by multipath
> -and multipathd.  This is equivalent to ulimit -n. A value of \fImax\fR will set
> +and multipathd.  This is equivalent to ulimit \-n. A value of \fImax\fR will set
>  this to the system limit from /proc/sys/fs/nr_open. If this is not set, the
>  maximum number of open fds is taken from the calling process. It is usually
>  1024. To be safe, this should be set to the maximum number of paths plus 32,
> @@ -322,7 +322,7 @@ if that number is greated than 1024.
>  .TP
>  .B checker_timeout
>  Specify the timeout to user for path checkers that issue scsi commands with an
> -explict timeout, in seconds; default taken from
> +explicit timeout, in seconds; default taken from
>  .I /sys/block/sd<x>/device/timeout
>  .TP
>  .B fast_io_fail_tmo
> @@ -405,7 +405,7 @@ The
>  section is used to revert the actions of the
>  .I blacklist
>  section, ie to include specific device in the
> -multipath topology. This allows to selectively include devices which
> +multipath topology. This allows one to selectively include devices which
>  would normally be excluded via the
>  .I blacklist
>  section.
> diff --git a/multipathd/multipathd.8 b/multipathd/multipathd.8
> index cbc40a4..ccc5f54 100644
> --- a/multipathd/multipathd.8
> +++ b/multipathd/multipathd.8
> @@ -53,10 +53,10 @@ Show the status of all multipath devices that the multipathd is monitoring.
>  Show some statistics of all multipath devices that the multipathd is monitoring.
>  .TP
>  .B list|show maps|multipaths topology
> -Show the current multipath topology. Same as "multipath -ll".
> +Show the current multipath topology. Same as "multipath \-ll".
>  .TP
>  .B list|show topology
> -Show the current multipath topology. Same as "multipath -ll".
> +Show the current multipath topology. Same as "multipath \-ll".
>  .TP
>  .B list|show map|multipath $map topology
>  Show topology of a single multipath device specified by $map, e.g. 36005076303ffc56200000000000010aa.

  reply	other threads:[~2013-01-12 13:14 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-09 10:05 [PATCH 0/3] Debian packaging fixes for multipath-tools Ritesh Raj Sarraf
2013-01-09 10:05 ` [PATCH 1/3] explicitly include posix_types.h Ritesh Raj Sarraf
2013-01-12 13:14   ` Christophe Varoqui
2013-01-09 10:05 ` [PATCH 2/3] Minor spelling error fixes for Debian's lintian cleanliness Ritesh Raj Sarraf
2013-01-12 13:14   ` Christophe Varoqui [this message]
2013-01-09 10:05 ` [PATCH 3/3] Drop useless link to curses library Ritesh Raj Sarraf
2013-01-12 13:14   ` Christophe Varoqui
  -- strict thread matches above, loose matches on Subject: below --
2013-01-09  8:32 [PATCH 1/3] explicitly include posix_types.h Ritesh Raj Sarraf
2013-01-09  8:32 ` [PATCH 2/3] Minor spelling error fixes for Debian's lintian cleanliness Ritesh Raj Sarraf
2013-01-09  8:53   ` Hannes Reinecke

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1357996441.4263.13.camel@lapoo.opensvc.com \
    --to=christophe.varoqui@gmail.com \
    --cc=christophe.varoqui@opensvc.com \
    --cc=dm-devel@redhat.com \
    --cc=rrs@debian.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox