[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [coreutils] [PATCH] Fix typo in texinfo annotation.
From: |
Pádraig Brady |
Subject: |
Re: [coreutils] [PATCH] Fix typo in texinfo annotation. |
Date: |
Sat, 14 Aug 2010 10:41:42 +0100 |
User-agent: |
Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.8) Gecko/20100227 Thunderbird/3.0.3 |
On 14/08/10 06:17, Ralf Wildenhues wrote:
>
> Hi coreutils maintainers,
>
> this trivial patch avoids this warning from CVS texinfo's makeinfo:
>
> coreutils.texi:3807: warning: `.' or `,' must follow @xref, not `)'.
> coreutils.texi:3807: warning: for cross-references in parentheses, use @pxref.
>
> Cheers,
> Ralf
>
> doc/coreutils.texi | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/doc/coreutils.texi b/doc/coreutils.texi
> index 66309b1..13b6aa5 100644
> --- a/doc/coreutils.texi
> +++ b/doc/coreutils.texi
> @@ -3804,7 +3804,7 @@ converting to floating point.
> @vindex LC_NUMERIC
> Sort numerically, first by numeric sign (negative, zero, or positive);
> then by @acronym{SI} suffix (either empty, or @samp{k} or @samp{K}, or
> -one of @samp{MGTPEZY}, in that order; @xref{Block size}); and finally
> +one of @samp{MGTPEZY}, in that order; @pxref{Block size}); and finally
> by numeric value. For example, @samp{1023M} sorts before @samp{1G}
> because @samp{M} (mega) precedes @samp{G} (giga) as an @acronym{SI}
> suffix. This option sorts values that are consistently scaled to the
> -- 1.7.2.1
Thanks Ralf.
I'll apply that.