Re: [PATCH] kconfig: fix minor typos in comments
Randy Dunlap <[email protected]> Sun, 19 Jul 2026 14:56:32 -0700
| Newsgroups | org.kernel.vger.linux-kbuild,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
On 7/19/26 2:05 PM, Julian Braha wrote: > Some typos I noticed: > 1. expressoin -> expression > 2. A property represent -> A property represents > > Signed-off-by: Julian Braha <[email protected]> Acked-by: Randy Dunlap <[email protected]> Thanks. > --- > scripts/kconfig/expr.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/scripts/kconfig/expr.h b/scripts/kconfig/expr.h > index 5f900d18dae0..fa3823a97d72 100644 > --- a/scripts/kconfig/expr.h > +++ b/scripts/kconfig/expr.h > @@ -38,7 +38,7 @@ union expr_data { > * struct expr - expression > * > * @node: link node for the hash table > - * @type: expressoin type > + * @type: expression type > * @val: calculated tristate value > * @val_is_valid: indicate whether the value is valid > * @left: left node > @@ -160,7 +160,7 @@ struct symbol { > > #define SYMBOL_MAXLENGTH 256 > > -/* A property represent the config options that can be associated > +/* A property represents the config options that can be associated > * with a config "symbol". > * Sample: > * config FOO -- ~Randy