git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] Makefile: Improve wording in a comment
@ 2015-02-05 13:26 Sebastian Schuberth
  2015-02-05 19:17 ` Junio C Hamano
  0 siblings, 1 reply; 5+ messages in thread
From: Sebastian Schuberth @ 2015-02-05 13:26 UTC (permalink / raw)
  To: Git Mailing List, Junio C Hamano; +Cc: normalperson, amyrick

Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index c44eb3a..6f8ae23 100644
--- a/Makefile
+++ b/Makefile
@@ -2447,7 +2447,7 @@ check-docs::
         esac; \
     done ) | sort

-### Make sure built-ins do not have dups and listed in git.c
+### Make sure built-ins do not have dupes and are listed in git.c
 #
 check-builtins::
     ./check-builtins.sh
-- 
2.1.2-mingw-1

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

* Re: [PATCH 1/2] Makefile: Improve wording in a comment
  2015-02-05 13:26 [PATCH 1/2] Makefile: Improve wording in a comment Sebastian Schuberth
@ 2015-02-05 19:17 ` Junio C Hamano
  2015-02-05 19:19   ` Sebastian Schuberth
  0 siblings, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2015-02-05 19:17 UTC (permalink / raw)
  To: Sebastian Schuberth; +Cc: Git Mailing List, normalperson, amyrick

Sebastian Schuberth <sschuberth@gmail.com> writes:

> Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com>
> ---

Is that an improvement?  Is the plural of "dup" (used as an
abbreviation of "duplicate") "dupes" not "dups"?

>  Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Makefile b/Makefile
> index c44eb3a..6f8ae23 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -2447,7 +2447,7 @@ check-docs::
>          esac; \
>      done ) | sort
>
> -### Make sure built-ins do not have dups and listed in git.c
> +### Make sure built-ins do not have dupes and are listed in git.c
>  #
>  check-builtins::
>      ./check-builtins.sh

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

* Re: [PATCH 1/2] Makefile: Improve wording in a comment
  2015-02-05 19:17 ` Junio C Hamano
@ 2015-02-05 19:19   ` Sebastian Schuberth
  2015-02-05 19:22     ` Sebastian Schuberth
  0 siblings, 1 reply; 5+ messages in thread
From: Sebastian Schuberth @ 2015-02-05 19:19 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Git Mailing List, normalperson, amyrick

On Thu, Feb 5, 2015 at 8:17 PM, Junio C Hamano <gitster@pobox.com> wrote:

> Sebastian Schuberth <sschuberth@gmail.com> writes:
>
>> Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com>
>> ---
>
> Is that an improvement?  Is the plural of "dup" (used as an
> abbreviation of "duplicate") "dupes" not "dups"?

My view is that the abbreviation of "duplicate" is not "dup" but
"dupe", hence the plural "dupes".

-- 
Sebastian Schuberth

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

* Re: [PATCH 1/2] Makefile: Improve wording in a comment
  2015-02-05 19:19   ` Sebastian Schuberth
@ 2015-02-05 19:22     ` Sebastian Schuberth
  2015-02-05 20:04       ` Stefan Beller
  0 siblings, 1 reply; 5+ messages in thread
From: Sebastian Schuberth @ 2015-02-05 19:22 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Git Mailing List, normalperson, amyrick

On Thu, Feb 5, 2015 at 8:19 PM, Sebastian Schuberth
<sschuberth@gmail.com> wrote:

>> Is that an improvement?  Is the plural of "dup" (used as an
>> abbreviation of "duplicate") "dupes" not "dups"?
>
> My view is that the abbreviation of "duplicate" is not "dup" but
> "dupe", hence the plural "dupes".

For "duplicate" the noun, that is. For "duplicate" the verb I'd be ok
with "dup" as the abbreviation. "to dup" sounds and looks better than
"to dupe" :-)

-- 
Sebastian Schuberth

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

* Re: [PATCH 1/2] Makefile: Improve wording in a comment
  2015-02-05 19:22     ` Sebastian Schuberth
@ 2015-02-05 20:04       ` Stefan Beller
  0 siblings, 0 replies; 5+ messages in thread
From: Stefan Beller @ 2015-02-05 20:04 UTC (permalink / raw)
  To: Sebastian Schuberth; +Cc: Junio C Hamano, Git Mailing List, Eric Wong, amyrick

On Thu, Feb 5, 2015 at 11:22 AM, Sebastian Schuberth
<sschuberth@gmail.com> wrote:
> On Thu, Feb 5, 2015 at 8:19 PM, Sebastian Schuberth
> <sschuberth@gmail.com> wrote:
>
>>> Is that an improvement?  Is the plural of "dup" (used as an
>>> abbreviation of "duplicate") "dupes" not "dups"?
>>
>> My view is that the abbreviation of "duplicate" is not "dup" but
>> "dupe", hence the plural "dupes".
>
> For "duplicate" the noun, that is. For "duplicate" the verb I'd be ok
> with "dup" as the abbreviation. "to dup" sounds and looks better than
> "to dupe" :-)
>

We could also not abbreviate that word to avoid discussion there.

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

end of thread, other threads:[~2015-02-05 20:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-05 13:26 [PATCH 1/2] Makefile: Improve wording in a comment Sebastian Schuberth
2015-02-05 19:17 ` Junio C Hamano
2015-02-05 19:19   ` Sebastian Schuberth
2015-02-05 19:22     ` Sebastian Schuberth
2015-02-05 20:04       ` Stefan Beller

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 NNTP newsgroup(s).