git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH] doc: fix typos in documentation and release notes
@ 2018-06-16 18:08 Xtreak
  2018-06-17  3:25 ` Eric Sunshine
  2018-06-17  4:35 ` [PATCH v2 signed off] " Xtreak
  0 siblings, 2 replies; 5+ messages in thread
From: Xtreak @ 2018-06-16 18:08 UTC (permalink / raw)
  To: git

---
 Documentation/RelNotes/1.7.11.7.txt | 2 +-
 Documentation/RelNotes/2.17.0.txt   | 2 +-
 Documentation/RelNotes/2.18.0.txt   | 2 +-
 Documentation/diff-options.txt      | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Documentation/RelNotes/1.7.11.7.txt b/Documentation/RelNotes/1.7.11.7.txt
index e7e79d999bd38..e743a2a8e46eb 100644
--- a/Documentation/RelNotes/1.7.11.7.txt
+++ b/Documentation/RelNotes/1.7.11.7.txt
@@ -25,7 +25,7 @@ Fixes since v1.7.11.6
    references" nor "Reload" did not update what is shown as the
    contents of it, when the user overwrote the tag with "git tag -f".
 
- * "git for-each-ref" did not currectly support more than one --sort
+ * "git for-each-ref" did not correctly support more than one --sort
    option.
 
  * "git log .." errored out saying it is both rev range and a path
diff --git a/Documentation/RelNotes/2.17.0.txt b/Documentation/RelNotes/2.17.0.txt
index d6db0e19cf17b..c2cf891f71adf 100644
--- a/Documentation/RelNotes/2.17.0.txt
+++ b/Documentation/RelNotes/2.17.0.txt
@@ -342,7 +342,7 @@ Fixes since v2.16
    validate the data and connected-ness of objects in the received
    pack; the code to perform this check has been taught about the
    narrow clone's convention that missing objects that are reachable
-   from objects in a pack that came from a promissor remote is OK.
+   from objects in a pack that came from a promisor remote is OK.
 
  * There was an unused file-scope static variable left in http.c when
    building for versions of libCURL that is older than 7.19.4, which
diff --git a/Documentation/RelNotes/2.18.0.txt b/Documentation/RelNotes/2.18.0.txt
index 7c59bd92fbd99..1eb13ece53600 100644
--- a/Documentation/RelNotes/2.18.0.txt
+++ b/Documentation/RelNotes/2.18.0.txt
@@ -324,7 +324,7 @@ Fixes since v2.17
    after giving an error message.
    (merge 3bb0923f06 ps/contains-id-error-message later to maint).
 
- * "diff-highlight" filter (in contrib/) learned to undertand "git log
+ * "diff-highlight" filter (in contrib/) learned to understand "git log
    --graph" output better.
    (merge 4551fbba14 jk/diff-highlight-graph-fix later to maint).
 
diff --git a/Documentation/diff-options.txt b/Documentation/diff-options.txt
index f466600972f86..bfa3808e49cc0 100644
--- a/Documentation/diff-options.txt
+++ b/Documentation/diff-options.txt
@@ -133,7 +133,7 @@ These parameters can also be set individually with `--stat-width=<width>`,
 	as file creations or deletions ("new" or "gone", optionally "+l"
 	if it's a symlink) and mode changes ("+x" or "-x" for adding
 	or removing executable bit respectively) in diffstat. The
-	information is put betwen the filename part and the graph
+	information is put between the filename part and the graph
 	part. Implies `--stat`.
 
 --numstat::

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

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

* Re: [PATCH] doc: fix typos in documentation and release notes
  2018-06-16 18:08 [PATCH] doc: fix typos in documentation and release notes Xtreak
@ 2018-06-17  3:25 ` Eric Sunshine
       [not found]   ` <CAAjsFLS8tz_123B453UP_mnjzH2_3osESMPFpC+y941F7x5eiA@mail.gmail.com>
  2018-06-17  4:35 ` [PATCH v2 signed off] " Xtreak
  1 sibling, 1 reply; 5+ messages in thread
From: Eric Sunshine @ 2018-06-17  3:25 UTC (permalink / raw)
  To: tir.karthi; +Cc: Git List

On Sat, Jun 16, 2018 at 2:08 PM Xtreak <tir.karthi@gmail.com> wrote:
> doc: fix typos in documentation and release notes

Thanks for the patch. All the fixes look "obviously correct".

Please sign-off[1] your patch so it can be included in the project.

[1]: https://github.com/git/git/blob/v2.8.1/Documentation/SubmittingPatches#L234-L286

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

* Re: [PATCH] doc: fix typos in documentation and release notes
       [not found]   ` <CAAjsFLS8tz_123B453UP_mnjzH2_3osESMPFpC+y941F7x5eiA@mail.gmail.com>
@ 2018-06-17  3:46     ` Eric Sunshine
  0 siblings, 0 replies; 5+ messages in thread
From: Eric Sunshine @ 2018-06-17  3:46 UTC (permalink / raw)
  To: tir.karthi; +Cc: Git List

On Sat, Jun 16, 2018 at 11:36 PM Karthikeyan <tir.karthi@gmail.com> wrote:
> On Sun, Jun 17, 2018, 8:55 AM Eric Sunshine <sunshine@sunshineco.com> wrote:
>> Please sign-off[1] your patch so it can be included in the project.
>
> Thanks. I am a beginner using Gmail and I have used SubmitToGit for
> this. Is it possible to do this using SubmitToGit or should I do git
> commit --amend -s to sign off and make a force push to submit it
> again from SubmitToGit as newer one?

Amending the commit with sign-off and re-submit should work fine.
Alternately, you can reply to this email thread with your sign off
in-line, like this:

Signed-off-by: Your Name <your@email>

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

* [PATCH v2 signed off] doc: fix typos in documentation and release notes
  2018-06-16 18:08 [PATCH] doc: fix typos in documentation and release notes Xtreak
  2018-06-17  3:25 ` Eric Sunshine
@ 2018-06-17  4:35 ` Xtreak
  2018-06-19 16:02   ` Junio C Hamano
  1 sibling, 1 reply; 5+ messages in thread
From: Xtreak @ 2018-06-17  4:35 UTC (permalink / raw)
  To: git

Signed-off-by: Karthikeyan Singaravelan <tir.karthi@gmail.com>
---
 Documentation/RelNotes/1.7.11.7.txt | 2 +-
 Documentation/RelNotes/2.17.0.txt   | 2 +-
 Documentation/RelNotes/2.18.0.txt   | 2 +-
 Documentation/diff-options.txt      | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Documentation/RelNotes/1.7.11.7.txt b/Documentation/RelNotes/1.7.11.7.txt
index e7e79d999bd38..e743a2a8e46eb 100644
--- a/Documentation/RelNotes/1.7.11.7.txt
+++ b/Documentation/RelNotes/1.7.11.7.txt
@@ -25,7 +25,7 @@ Fixes since v1.7.11.6
    references" nor "Reload" did not update what is shown as the
    contents of it, when the user overwrote the tag with "git tag -f".
 
- * "git for-each-ref" did not currectly support more than one --sort
+ * "git for-each-ref" did not correctly support more than one --sort
    option.
 
  * "git log .." errored out saying it is both rev range and a path
diff --git a/Documentation/RelNotes/2.17.0.txt b/Documentation/RelNotes/2.17.0.txt
index d6db0e19cf17b..c2cf891f71adf 100644
--- a/Documentation/RelNotes/2.17.0.txt
+++ b/Documentation/RelNotes/2.17.0.txt
@@ -342,7 +342,7 @@ Fixes since v2.16
    validate the data and connected-ness of objects in the received
    pack; the code to perform this check has been taught about the
    narrow clone's convention that missing objects that are reachable
-   from objects in a pack that came from a promissor remote is OK.
+   from objects in a pack that came from a promisor remote is OK.
 
  * There was an unused file-scope static variable left in http.c when
    building for versions of libCURL that is older than 7.19.4, which
diff --git a/Documentation/RelNotes/2.18.0.txt b/Documentation/RelNotes/2.18.0.txt
index 7c59bd92fbd99..1eb13ece53600 100644
--- a/Documentation/RelNotes/2.18.0.txt
+++ b/Documentation/RelNotes/2.18.0.txt
@@ -324,7 +324,7 @@ Fixes since v2.17
    after giving an error message.
    (merge 3bb0923f06 ps/contains-id-error-message later to maint).
 
- * "diff-highlight" filter (in contrib/) learned to undertand "git log
+ * "diff-highlight" filter (in contrib/) learned to understand "git log
    --graph" output better.
    (merge 4551fbba14 jk/diff-highlight-graph-fix later to maint).
 
diff --git a/Documentation/diff-options.txt b/Documentation/diff-options.txt
index f466600972f86..bfa3808e49cc0 100644
--- a/Documentation/diff-options.txt
+++ b/Documentation/diff-options.txt
@@ -133,7 +133,7 @@ These parameters can also be set individually with `--stat-width=<width>`,
 	as file creations or deletions ("new" or "gone", optionally "+l"
 	if it's a symlink) and mode changes ("+x" or "-x" for adding
 	or removing executable bit respectively) in diffstat. The
-	information is put betwen the filename part and the graph
+	information is put between the filename part and the graph
 	part. Implies `--stat`.
 
 --numstat::

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

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

* Re: [PATCH v2 signed off] doc: fix typos in documentation and release notes
  2018-06-17  4:35 ` [PATCH v2 signed off] " Xtreak
@ 2018-06-19 16:02   ` Junio C Hamano
  0 siblings, 0 replies; 5+ messages in thread
From: Junio C Hamano @ 2018-06-19 16:02 UTC (permalink / raw)
  To: Xtreak; +Cc: git

Xtreak <tir.karthi@gmail.com> writes:

> Signed-off-by: Karthikeyan Singaravelan <tir.karthi@gmail.com>
> ---
>  Documentation/RelNotes/1.7.11.7.txt | 2 +-
>  Documentation/RelNotes/2.17.0.txt   | 2 +-
>  Documentation/RelNotes/2.18.0.txt   | 2 +-
>  Documentation/diff-options.txt      | 2 +-
>  4 files changed, 4 insertions(+), 4 deletions(-)

Thanks, will apply.

>
> diff --git a/Documentation/RelNotes/1.7.11.7.txt b/Documentation/RelNotes/1.7.11.7.txt
> index e7e79d999bd38..e743a2a8e46eb 100644
> --- a/Documentation/RelNotes/1.7.11.7.txt
> +++ b/Documentation/RelNotes/1.7.11.7.txt
> @@ -25,7 +25,7 @@ Fixes since v1.7.11.6
>     references" nor "Reload" did not update what is shown as the
>     contents of it, when the user overwrote the tag with "git tag -f".
>  
> - * "git for-each-ref" did not currectly support more than one --sort
> + * "git for-each-ref" did not correctly support more than one --sort
>     option.
>  
>   * "git log .." errored out saying it is both rev range and a path
> diff --git a/Documentation/RelNotes/2.17.0.txt b/Documentation/RelNotes/2.17.0.txt
> index d6db0e19cf17b..c2cf891f71adf 100644
> --- a/Documentation/RelNotes/2.17.0.txt
> +++ b/Documentation/RelNotes/2.17.0.txt
> @@ -342,7 +342,7 @@ Fixes since v2.16
>     validate the data and connected-ness of objects in the received
>     pack; the code to perform this check has been taught about the
>     narrow clone's convention that missing objects that are reachable
> -   from objects in a pack that came from a promissor remote is OK.
> +   from objects in a pack that came from a promisor remote is OK.
>  
>   * There was an unused file-scope static variable left in http.c when
>     building for versions of libCURL that is older than 7.19.4, which
> diff --git a/Documentation/RelNotes/2.18.0.txt b/Documentation/RelNotes/2.18.0.txt
> index 7c59bd92fbd99..1eb13ece53600 100644
> --- a/Documentation/RelNotes/2.18.0.txt
> +++ b/Documentation/RelNotes/2.18.0.txt
> @@ -324,7 +324,7 @@ Fixes since v2.17
>     after giving an error message.
>     (merge 3bb0923f06 ps/contains-id-error-message later to maint).
>  
> - * "diff-highlight" filter (in contrib/) learned to undertand "git log
> + * "diff-highlight" filter (in contrib/) learned to understand "git log
>     --graph" output better.
>     (merge 4551fbba14 jk/diff-highlight-graph-fix later to maint).
>  
> diff --git a/Documentation/diff-options.txt b/Documentation/diff-options.txt
> index f466600972f86..bfa3808e49cc0 100644
> --- a/Documentation/diff-options.txt
> +++ b/Documentation/diff-options.txt
> @@ -133,7 +133,7 @@ These parameters can also be set individually with `--stat-width=<width>`,
>  	as file creations or deletions ("new" or "gone", optionally "+l"
>  	if it's a symlink) and mode changes ("+x" or "-x" for adding
>  	or removing executable bit respectively) in diffstat. The
> -	information is put betwen the filename part and the graph
> +	information is put between the filename part and the graph
>  	part. Implies `--stat`.
>  
>  --numstat::
>
> --
> https://github.com/git/git/pull/510

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

end of thread, other threads:[~2018-06-19 16:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-16 18:08 [PATCH] doc: fix typos in documentation and release notes Xtreak
2018-06-17  3:25 ` Eric Sunshine
     [not found]   ` <CAAjsFLS8tz_123B453UP_mnjzH2_3osESMPFpC+y941F7x5eiA@mail.gmail.com>
2018-06-17  3:46     ` Eric Sunshine
2018-06-17  4:35 ` [PATCH v2 signed off] " Xtreak
2018-06-19 16:02   ` Junio C Hamano

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).