git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH] doc: fix form -> from typo
@ 2019-06-25  6:36 Catalin Criste
  2019-06-25  9:41 ` Martin Ågren
  0 siblings, 1 reply; 6+ messages in thread
From: Catalin Criste @ 2019-06-25  6:36 UTC (permalink / raw)
  To: git

Signed-off-by: Catalin Criste <cris_linu_w@yahoo.com>
---
 Documentation/git-stash.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/git-stash.txt b/Documentation/git-stash.txt
index 7ef8c4791177b..b96ce2d02d149 100644
--- a/Documentation/git-stash.txt
+++ b/Documentation/git-stash.txt
@@ -88,7 +88,7 @@ save [-p|--patch] [-k|--[no-]keep-index] [-u|--include-untracked] [-a|--all] [-q
 
 	This option is deprecated in favour of 'git stash push'.  It
 	differs from "stash push" in that it cannot take pathspecs,
-	and any non-option arguments form the message.
+	and any non-option arguments from the message.
 
 list [<options>]::
 

--
https://github.com/git/git/pull/521

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] doc: fix form -> from typo
  2019-06-25  6:36 [PATCH] doc: fix form -> from typo Catalin Criste
@ 2019-06-25  9:41 ` Martin Ågren
  2019-06-25 11:40   ` Johannes Schindelin
                     ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Martin Ågren @ 2019-06-25  9:41 UTC (permalink / raw)
  To: Catalin Criste; +Cc: Git Mailing List, Thomas Gummerer

Hi Catalin

Welcome to the list!

On Tue, 25 Jun 2019 at 09:43, Catalin Criste <cris_linu_w@yahoo.com> wrote:

> @@ -88,7 +88,7 @@ save [-p|--patch] [-k|--[no-]keep-index] [-u|--include-untracked] [-a|--all] [-q
>
>         This option is deprecated in favour of 'git stash push'.  It
>         differs from "stash push" in that it cannot take pathspecs,
> -       and any non-option arguments form the message.
> +       and any non-option arguments from the message.

I think this is actually intended as "form". It took me a couple of
readings, but what this paragraph wants to say is that any non-option
arguments will be used to form (construct) the message.

Do you have any suggestions as to how this could be made clearer?
There are at least two of us that have stumbled on this. :-)

Cheers
Martin

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] doc: fix form -> from typo
  2019-06-25  9:41 ` Martin Ågren
@ 2019-06-25 11:40   ` Johannes Schindelin
  2019-06-25 17:49     ` Martin Ågren
  2019-06-25 20:07   ` Junio C Hamano
  2019-06-26  8:22   ` Thomas Gummerer
  2 siblings, 1 reply; 6+ messages in thread
From: Johannes Schindelin @ 2019-06-25 11:40 UTC (permalink / raw)
  To: Martin Ågren; +Cc: Catalin Criste, Git Mailing List, Thomas Gummerer

[-- Attachment #1: Type: text/plain, Size: 1178 bytes --]

Hi Martin,

On Tue, 25 Jun 2019, Martin Ågren wrote:

> On Tue, 25 Jun 2019 at 09:43, Catalin Criste <cris_linu_w@yahoo.com> wrote:
>
> > @@ -88,7 +88,7 @@ save [-p|--patch] [-k|--[no-]keep-index] [-u|--include-untracked] [-a|--all] [-q
> >
> >         This option is deprecated in favour of 'git stash push'.  It
> >         differs from "stash push" in that it cannot take pathspecs,
> > -       and any non-option arguments form the message.
> > +       and any non-option arguments from the message.
>
> I think this is actually intended as "form". It took me a couple of
> readings, but what this paragraph wants to say is that any non-option
> arguments will be used to form (construct) the message.

You're right! I totally misread this, too.

> Do you have any suggestions as to how this could be made clearer?
> There are at least two of us that have stumbled on this. :-)

Make that three.

Maybe something like

	This option is deprecated in favour of 'git stash push'.  It
	differs from "stash push" in that it cannot take pathspecs;
	Instead, all non-option arguments are concatenated to form the stash
	message.

?

Ciao,
Dscho

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] doc: fix form -> from typo
  2019-06-25 11:40   ` Johannes Schindelin
@ 2019-06-25 17:49     ` Martin Ågren
  0 siblings, 0 replies; 6+ messages in thread
From: Martin Ågren @ 2019-06-25 17:49 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: Catalin Criste, Git Mailing List, Thomas Gummerer

On Tue, 25 Jun 2019 at 13:40, Johannes Schindelin
<Johannes.Schindelin@gmx.de> wrote:
> On Tue, 25 Jun 2019, Martin Ågren wrote:

> > Do you have any suggestions as to how this could be made clearer?
> > There are at least two of us that have stumbled on this. :-)
>
> Make that three.
>
> Maybe something like
>
>         This option is deprecated in favour of 'git stash push'.  It
>         differs from "stash push" in that it cannot take pathspecs;
>         Instead, all non-option arguments are concatenated to form the stash
>         message.
>
> ?

Looks good. I would probably avoid the semicolon ";" and in this case
just replace it with a period. But it's nothing I feel strongly about.

Martin

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] doc: fix form -> from typo
  2019-06-25  9:41 ` Martin Ågren
  2019-06-25 11:40   ` Johannes Schindelin
@ 2019-06-25 20:07   ` Junio C Hamano
  2019-06-26  8:22   ` Thomas Gummerer
  2 siblings, 0 replies; 6+ messages in thread
From: Junio C Hamano @ 2019-06-25 20:07 UTC (permalink / raw)
  To: Martin Ågren; +Cc: Catalin Criste, Git Mailing List, Thomas Gummerer

Martin Ågren <martin.agren@gmail.com> writes:

> Hi Catalin
>
> Welcome to the list!
>
> On Tue, 25 Jun 2019 at 09:43, Catalin Criste <cris_linu_w@yahoo.com> wrote:
>
>> @@ -88,7 +88,7 @@ save [-p|--patch] [-k|--[no-]keep-index] [-u|--include-untracked] [-a|--all] [-q
>>
>>         This option is deprecated in favour of 'git stash push'.  It
>>         differs from "stash push" in that it cannot take pathspecs,
>> -       and any non-option arguments form the message.
>> +       and any non-option arguments from the message.
>
> I think this is actually intended as "form". It took me a couple of
> readings, but what this paragraph wants to say is that any non-option
> arguments will be used to form (construct) the message.
>
> Do you have any suggestions as to how this could be made clearer?
> There are at least two of us that have stumbled on this. :-)

"become"?

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] doc: fix form -> from typo
  2019-06-25  9:41 ` Martin Ågren
  2019-06-25 11:40   ` Johannes Schindelin
  2019-06-25 20:07   ` Junio C Hamano
@ 2019-06-26  8:22   ` Thomas Gummerer
  2 siblings, 0 replies; 6+ messages in thread
From: Thomas Gummerer @ 2019-06-26  8:22 UTC (permalink / raw)
  To: Martin Ågren; +Cc: Catalin Criste, Git Mailing List

On 06/25, Martin Ågren wrote:
> Hi Catalin
> 
> Welcome to the list!
> 
> On Tue, 25 Jun 2019 at 09:43, Catalin Criste <cris_linu_w@yahoo.com> wrote:
> 
> > @@ -88,7 +88,7 @@ save [-p|--patch] [-k|--[no-]keep-index] [-u|--include-untracked] [-a|--all] [-q
> >
> >         This option is deprecated in favour of 'git stash push'.  It
> >         differs from "stash push" in that it cannot take pathspecs,
> > -       and any non-option arguments form the message.
> > +       and any non-option arguments from the message.
> 
> I think this is actually intended as "form". It took me a couple of
> readings, but what this paragraph wants to say is that any non-option
> arguments will be used to form (construct) the message.
> 
> Do you have any suggestions as to how this could be made clearer?
> There are at least two of us that have stumbled on this. :-)

Even though I originally wrote this I had to have a double take on it.
Maybe what you're saying above would be good?  "and any non-option
arguments are used to form the message" sounds a little clearer to
me.  Or maybe even use the word construct?  Dunno.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-06-26  8:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-25  6:36 [PATCH] doc: fix form -> from typo Catalin Criste
2019-06-25  9:41 ` Martin Ågren
2019-06-25 11:40   ` Johannes Schindelin
2019-06-25 17:49     ` Martin Ågren
2019-06-25 20:07   ` Junio C Hamano
2019-06-26  8:22   ` Thomas Gummerer

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).