Re: [patch 1/1] Fix kconfig docs typo: integer -> int

2005-03-17 Thread Sam Ravnborg
On Thu, Mar 10, 2005 at 04:38:58PM +0100, [EMAIL PROTECTED] wrote:
> 
> Trivial correction: the type of numbers for Kconfig is not integer but int (I
> just verified because I followed the wrong docs and got a error, I looked
> elsewhere and they are using int, and int works for me). Please apply.

Applied - thanks.

Sam
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[patch 1/1] Fix kconfig docs typo: integer -> int

2005-03-14 Thread blaisorblade

Trivial correction: the type of numbers for Kconfig is not integer but int (I
just verified because I followed the wrong docs and got a error, I looked
elsewhere and they are using int, and int works for me). Please apply.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]>
---

 linux-2.6.11-paolo/Documentation/kbuild/kconfig-language.txt |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff -puN Documentation/kbuild/kconfig-language.txt~doc-big-typo-fix 
Documentation/kbuild/kconfig-language.txt
--- linux-2.6.11/Documentation/kbuild/kconfig-language.txt~doc-big-typo-fix 
2005-03-10 16:35:38.0 +0100
+++ linux-2.6.11-paolo/Documentation/kbuild/kconfig-language.txt
2005-03-10 16:36:09.0 +0100
@@ -48,7 +48,7 @@ Menu attributes
 A menu entry can have a number of attributes. Not all of them are
 applicable everywhere (see syntax).
 
-- type definition: "bool"/"tristate"/"string"/"hex"/"integer"
+- type definition: "bool"/"tristate"/"string"/"hex"/"int"
   Every config option must have a type. There are only two basic types:
   tristate and string, the other types are based on these two. The type
   definition optionally accepts an input prompt, so these two examples
@@ -100,7 +100,7 @@ applicable everywhere (see syntax).
   symbols.
 
 - numerical ranges: "range"   ["if" ]
-  This allows to limit the range of possible input values for integer
+  This allows to limit the range of possible input values for int
   and hex symbols. The user can only input a value which is larger than
   or equal to the first symbol and smaller than or equal to the second
   symbol.
_
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/