All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] support/kconfig: fix usage typo and align verb tenses
@ 2017-10-10  8:32 Thomas De Schampheleire
  2017-10-10 20:42 ` Thomas Petazzoni
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Thomas De Schampheleire @ 2017-10-10  8:32 UTC (permalink / raw)
  To: buildroot

Fix typo 'selectes' -> 'selects'.
Additionally, change 'will exclude' to 'excludes' to align with 'selects'.

Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
---

Note: I bumped into this by accident and couldn't let it sit there.


 support/kconfig/mconf.c                                      | 2 +-
 support/kconfig/patches/01-kconfig-kernel-to-buildroot.patch | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/support/kconfig/mconf.c b/support/kconfig/mconf.c
index 7d6cf80703..91c4df78f3 100644
--- a/support/kconfig/mconf.c
+++ b/support/kconfig/mconf.c
@@ -176,7 +176,7 @@ menu_instructions[] = N_(
 	"Arrow keys navigate the menu.  "
 	"<Enter> selects submenus ---> (or empty submenus ----).  "
 	"Highlighted letters are hotkeys.  "
-	"Pressing <Y> selectes a feature, while <N> will exclude a feature.  "
+	"Pressing <Y> selects a feature, while <N> excludes a feature.  "
 	"Press <Esc><Esc> to exit, <?> for Help, </> for Search.  "
 	"Legend: [*] feature is selected  [ ] feature is excluded"),
 radiolist_instructions[] = N_(
diff --git a/support/kconfig/patches/01-kconfig-kernel-to-buildroot.patch b/support/kconfig/patches/01-kconfig-kernel-to-buildroot.patch
index ecfe76b6e2..e76198a36b 100644
--- a/support/kconfig/patches/01-kconfig-kernel-to-buildroot.patch
+++ b/support/kconfig/patches/01-kconfig-kernel-to-buildroot.patch
@@ -28,7 +28,7 @@ Index: kconfig/mconf.c
  	"<Enter> selects submenus ---> (or empty submenus ----).  "
  	"Highlighted letters are hotkeys.  "
 -	"Pressing <Y> includes, <N> excludes, <M> modularizes features.  "
-+	"Pressing <Y> selectes a feature, while <N> will exclude a feature.  "
++	"Pressing <Y> selects a feature, while <N> excludes a feature.  "
  	"Press <Esc><Esc> to exit, <?> for Help, </> for Search.  "
 -	"Legend: [*] built-in  [ ] excluded  <M> module  < > module capable"),
 +	"Legend: [*] feature is selected  [ ] feature is excluded"),
-- 
2.13.5

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

* [Buildroot] [PATCH] support/kconfig: fix usage typo and align verb tenses
  2017-10-10  8:32 [Buildroot] [PATCH] support/kconfig: fix usage typo and align verb tenses Thomas De Schampheleire
@ 2017-10-10 20:42 ` Thomas Petazzoni
  2017-10-11  8:49   ` Peter Korsgaard
  2017-10-15 20:09 ` Peter Korsgaard
  2017-10-17  9:07 ` Peter Korsgaard
  2 siblings, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2017-10-10 20:42 UTC (permalink / raw)
  To: buildroot

Hello,

On Tue, 10 Oct 2017 10:32:29 +0200, Thomas De Schampheleire wrote:
> Fix typo 'selectes' -> 'selects'.
> Additionally, change 'will exclude' to 'excludes' to align with 'selects'.
> 
> Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
> ---

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH] support/kconfig: fix usage typo and align verb tenses
  2017-10-10 20:42 ` Thomas Petazzoni
@ 2017-10-11  8:49   ` Peter Korsgaard
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2017-10-11  8:49 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 > Hello,
 > On Tue, 10 Oct 2017 10:32:29 +0200, Thomas De Schampheleire wrote:
 >> Fix typo 'selectes' -> 'selects'.
 >> Additionally, change 'will exclude' to 'excludes' to align with 'selects'.
 >> 
 >> Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
 >> ---

 > Applied to master, thanks.

It would btw be cool to bump our kconfig version and look into maybe
using the imply keyword.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] support/kconfig: fix usage typo and align verb tenses
  2017-10-10  8:32 [Buildroot] [PATCH] support/kconfig: fix usage typo and align verb tenses Thomas De Schampheleire
  2017-10-10 20:42 ` Thomas Petazzoni
@ 2017-10-15 20:09 ` Peter Korsgaard
  2017-10-17  9:07 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2017-10-15 20:09 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> writes:

 > Fix typo 'selectes' -> 'selects'.
 > Additionally, change 'will exclude' to 'excludes' to align with 'selects'.

 > Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
 > ---

 > Note: I bumped into this by accident and couldn't let it sit there.

Committed to 2017.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] support/kconfig: fix usage typo and align verb tenses
  2017-10-10  8:32 [Buildroot] [PATCH] support/kconfig: fix usage typo and align verb tenses Thomas De Schampheleire
  2017-10-10 20:42 ` Thomas Petazzoni
  2017-10-15 20:09 ` Peter Korsgaard
@ 2017-10-17  9:07 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2017-10-17  9:07 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> writes:

 > Fix typo 'selectes' -> 'selects'.
 > Additionally, change 'will exclude' to 'excludes' to align with 'selects'.

 > Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
 > ---

 > Note: I bumped into this by accident and couldn't let it sit there.

Committed to 2017.08.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2017-10-17  9:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-10  8:32 [Buildroot] [PATCH] support/kconfig: fix usage typo and align verb tenses Thomas De Schampheleire
2017-10-10 20:42 ` Thomas Petazzoni
2017-10-11  8:49   ` Peter Korsgaard
2017-10-15 20:09 ` Peter Korsgaard
2017-10-17  9:07 ` Peter Korsgaard

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.