diff options
author | Thorsten Blum <thorsten.blum@linux.dev> | 2024-10-19 23:17:47 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2024-11-06 08:46:34 +0900 |
commit | cdb1e767c8db704965e0ca13f6e91a94a5d6cfb1 (patch) | |
tree | 2bc815656e59f8134539a2119cf465417e7fe696 | |
parent | bf98f6d1082463392f7fadd6292f3289207e07c7 (diff) | |
download | lwn-cdb1e767c8db704965e0ca13f6e91a94a5d6cfb1.tar.gz lwn-cdb1e767c8db704965e0ca13f6e91a94a5d6cfb1.zip |
kconfig: nconf: Fix typo in function comment
s/handles/handled/
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
-rw-r--r-- | scripts/kconfig/nconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/nconf.c b/scripts/kconfig/nconf.c index 063b4f7ccbdb..c0b2dabf6c89 100644 --- a/scripts/kconfig/nconf.c +++ b/scripts/kconfig/nconf.c @@ -467,7 +467,7 @@ static void handle_f9(int *key, struct menu *current_item) return; } -/* return != 0 to indicate the key was handles */ +/* return != 0 to indicate the key was handled */ static int process_special_keys(int *key, struct menu *menu) { int i; |