All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [Trivial] ktest: change singular "paranthesis" to plural "parantheses"
@ 2012-04-16 22:28 Jesper Juhl
  2012-04-17  2:05 ` Randy Dunlap
  0 siblings, 1 reply; 5+ messages in thread
From: Jesper Juhl @ 2012-04-16 22:28 UTC (permalink / raw)
  To: linux-kernel; +Cc: trivial, Steven Rostedt

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
---
 tools/testing/ktest/sample.conf |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/ktest/sample.conf b/tools/testing/ktest/sample.conf
index b682456..1a6e0d9 100644
--- a/tools/testing/ktest/sample.conf
+++ b/tools/testing/ktest/sample.conf
@@ -158,7 +158,7 @@
 #
 # TEST_START IF (DEFINED ALL_TESTS || ${MYTEST} == boottest) && ${MACHINE} == gandalf
 #
-# Notice the use of paranthesis. Without any paranthesis the above would be
+# Notice the use of parantheses. Without any parantheses the above would be
 # processed the same as:
 #
 # TEST_START IF DEFINED ALL_TESTS || (${MYTEST} == boottest && ${MACHINE} == gandalf)
-- 
1.7.10


-- 
Jesper Juhl <jj@chaosbits.net>       http://www.chaosbits.net/
Don't top-post http://www.catb.org/jargon/html/T/top-post.html
Plain text mails only, please.


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

* Re: [PATCH] [Trivial] ktest: change singular "paranthesis" to plural "parantheses"
  2012-04-17  2:05 ` Randy Dunlap
@ 2012-04-16 23:12   ` Jesper Juhl
  2012-04-17  2:15     ` Randy Dunlap
  0 siblings, 1 reply; 5+ messages in thread
From: Jesper Juhl @ 2012-04-16 23:12 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-kernel, trivial, Steven Rostedt

On Mon, 16 Apr 2012, Randy Dunlap wrote:

> On 04/16/2012 03:28 PM, Jesper Juhl wrote:
> 
> > Signed-off-by: Jesper Juhl <jj@chaosbits.net>
> > ---
> >  tools/testing/ktest/sample.conf |    2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> It's misspelled before and after the patch.  :(
> 
Ahh, crap, you are right. Sorry about that :-(

I could try to blame that on english not being my first language, but I 
won't since it's just me screwing up.
I did read the patch several times before sending it and thought I'd made 
sure there were no trivial errors like that, but I was wrong - damn it.


This should be better :

From: Jesper Juhl <jj@chaosbits.net>
Date: Mon, 16 Apr 2012 19:40:24 +0200
Subject: [PATCH] [Trivial] ktest: change singular "paranthesis" to plural "parentheses"


Signed-off-by: Jesper Juhl <jj@chaosbits.net>
---
 tools/testing/ktest/sample.conf |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/ktest/sample.conf b/tools/testing/ktest/sample.conf
index b682456..2d5109f 100644
--- a/tools/testing/ktest/sample.conf
+++ b/tools/testing/ktest/sample.conf
@@ -158,7 +158,7 @@
 #
 # TEST_START IF (DEFINED ALL_TESTS || ${MYTEST} == boottest) && ${MACHINE} == gandalf
 #
-# Notice the use of paranthesis. Without any paranthesis the above would be
+# Notice the use of parentheses. Without any parentheses the above would be
 # processed the same as:
 #
 # TEST_START IF DEFINED ALL_TESTS || (${MYTEST} == boottest && ${MACHINE} == gandalf)
-- 
1.7.10


-- 
Jesper Juhl <jj@chaosbits.net>       http://www.chaosbits.net/
Don't top-post http://www.catb.org/jargon/html/T/top-post.html
Plain text mails only, please.


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

* Re: [PATCH] [Trivial] ktest: change singular "paranthesis" to plural "parantheses"
  2012-04-17  2:15     ` Randy Dunlap
@ 2012-04-16 23:58       ` Steven Rostedt
  0 siblings, 0 replies; 5+ messages in thread
From: Steven Rostedt @ 2012-04-16 23:58 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: Jesper Juhl, linux-kernel, trivial

On Mon, 2012-04-16 at 19:15 -0700, Randy Dunlap wrote:
> On 04/16/2012 04:12 PM, Jesper Juhl wrote:
> 
> > On Mon, 16 Apr 2012, Randy Dunlap wrote:
> > 
> >> On 04/16/2012 03:28 PM, Jesper Juhl wrote:
> >>
> >>> Signed-off-by: Jesper Juhl <jj@chaosbits.net>
> >>> ---
> >>>  tools/testing/ktest/sample.conf |    2 +-
> >>>  1 file changed, 1 insertion(+), 1 deletion(-)
> >>
> >> It's misspelled before and after the patch.  :(
> >>
> > Ahh, crap, you are right. Sorry about that :-(
> > 
> > I could try to blame that on english not being my first language, but I 
> > won't since it's just me screwing up.
> > I did read the patch several times before sending it and thought I'd made 
> > sure there were no trivial errors like that, but I was wrong - damn it.
> > 
> > 
> > This should be better :
> > 
> > From: Jesper Juhl <jj@chaosbits.net>
> > Date: Mon, 16 Apr 2012 19:40:24 +0200
> > Subject: [PATCH] [Trivial] ktest: change singular "paranthesis" to plural "parentheses"
> > 
> 
> 
> Looks good.  Thanks.
> 
> Acked-by: Randy Dunlap <rdunlap@xenotime.net>
> 

I'll pull this into my queue for 3.5

-- Steve



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

* Re: [PATCH] [Trivial] ktest: change singular "paranthesis" to plural "parantheses"
  2012-04-16 22:28 [PATCH] [Trivial] ktest: change singular "paranthesis" to plural "parantheses" Jesper Juhl
@ 2012-04-17  2:05 ` Randy Dunlap
  2012-04-16 23:12   ` Jesper Juhl
  0 siblings, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2012-04-17  2:05 UTC (permalink / raw)
  To: Jesper Juhl; +Cc: linux-kernel, trivial, Steven Rostedt

On 04/16/2012 03:28 PM, Jesper Juhl wrote:

> Signed-off-by: Jesper Juhl <jj@chaosbits.net>
> ---
>  tools/testing/ktest/sample.conf |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

It's misspelled before and after the patch.  :(


> diff --git a/tools/testing/ktest/sample.conf b/tools/testing/ktest/sample.conf
> index b682456..1a6e0d9 100644
> --- a/tools/testing/ktest/sample.conf
> +++ b/tools/testing/ktest/sample.conf
> @@ -158,7 +158,7 @@
>  #
>  # TEST_START IF (DEFINED ALL_TESTS || ${MYTEST} == boottest) && ${MACHINE} == gandalf
>  #
> -# Notice the use of paranthesis. Without any paranthesis the above would be
> +# Notice the use of parantheses. Without any parantheses the above would be
>  # processed the same as:
>  #
>  # TEST_START IF DEFINED ALL_TESTS || (${MYTEST} == boottest && ${MACHINE} == gandalf)



-- 
~Randy

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

* Re: [PATCH] [Trivial] ktest: change singular "paranthesis" to plural "parantheses"
  2012-04-16 23:12   ` Jesper Juhl
@ 2012-04-17  2:15     ` Randy Dunlap
  2012-04-16 23:58       ` Steven Rostedt
  0 siblings, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2012-04-17  2:15 UTC (permalink / raw)
  To: Jesper Juhl; +Cc: linux-kernel, trivial, Steven Rostedt

On 04/16/2012 04:12 PM, Jesper Juhl wrote:

> On Mon, 16 Apr 2012, Randy Dunlap wrote:
> 
>> On 04/16/2012 03:28 PM, Jesper Juhl wrote:
>>
>>> Signed-off-by: Jesper Juhl <jj@chaosbits.net>
>>> ---
>>>  tools/testing/ktest/sample.conf |    2 +-
>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> It's misspelled before and after the patch.  :(
>>
> Ahh, crap, you are right. Sorry about that :-(
> 
> I could try to blame that on english not being my first language, but I 
> won't since it's just me screwing up.
> I did read the patch several times before sending it and thought I'd made 
> sure there were no trivial errors like that, but I was wrong - damn it.
> 
> 
> This should be better :
> 
> From: Jesper Juhl <jj@chaosbits.net>
> Date: Mon, 16 Apr 2012 19:40:24 +0200
> Subject: [PATCH] [Trivial] ktest: change singular "paranthesis" to plural "parentheses"
> 


Looks good.  Thanks.

Acked-by: Randy Dunlap <rdunlap@xenotime.net>


> 
> Signed-off-by: Jesper Juhl <jj@chaosbits.net>
> ---
>  tools/testing/ktest/sample.conf |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/ktest/sample.conf b/tools/testing/ktest/sample.conf
> index b682456..2d5109f 100644
> --- a/tools/testing/ktest/sample.conf
> +++ b/tools/testing/ktest/sample.conf
> @@ -158,7 +158,7 @@
>  #
>  # TEST_START IF (DEFINED ALL_TESTS || ${MYTEST} == boottest) && ${MACHINE} == gandalf
>  #
> -# Notice the use of paranthesis. Without any paranthesis the above would be
> +# Notice the use of parentheses. Without any parentheses the above would be
>  # processed the same as:
>  #
>  # TEST_START IF DEFINED ALL_TESTS || (${MYTEST} == boottest && ${MACHINE} == gandalf)



-- 
~Randy

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

end of thread, other threads:[~2012-04-16 23:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-16 22:28 [PATCH] [Trivial] ktest: change singular "paranthesis" to plural "parantheses" Jesper Juhl
2012-04-17  2:05 ` Randy Dunlap
2012-04-16 23:12   ` Jesper Juhl
2012-04-17  2:15     ` Randy Dunlap
2012-04-16 23:58       ` Steven Rostedt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.