From nobody Tue Nov 26 09:47:40 2024 Received: from out-170.mta1.migadu.com (out-170.mta1.migadu.com [95.215.58.170]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 07EC32A8E5 for ; Sat, 19 Oct 2024 21:18:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.170 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1729372717; cv=none; b=MjlABmb1dfI09vyzC8WP9Ay3lK0zSPZG6Hf3bbTjQqCXpx+yAeJnPuVy75jgOEOS6V1G8Dbq8w8c0PUlao0Z92Y/IVSoKVX5s21QUxFTDnfTh1piDu2Lygep20VQfljdUnGxdBWf2Sdmmz+jSQmkLezjEx9nH8gUBCyVB71/k7k= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1729372717; c=relaxed/simple; bh=0prThLFD3++yV3C1XGGIGpsYyfarZ4u1m3O9IKC794g=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=lApsag/AuwGlGGepaEh+9MaR/3WY+JRTJN0xEoJcGDQeocRV6qQHSndqLoQlbrJhKKb0Qbjf2B5ZpnX3yhBHKjfyoMbMXBiRHsk0NAkRl6SxsLDOgl53HPTBXPAQ/hufaA2kZEJn/41lIvx1u2NdEq2jgoyIN4utZWcSXF7aKlY= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=Xk8J4gQa; arc=none smtp.client-ip=95.215.58.170 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="Xk8J4gQa" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1729372711; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=UBFbKB4AzIx7FdNHFpWUEGetjQWa2gnDK7ldJlMg82Y=; b=Xk8J4gQa1Uh8iy1gM7/3qA1nhWdY11a36tMYKEvBhM5xEQv3Xod8UYz/FjICHcKnFztjLL DoJ3/pUJU4w201zmbUSzWblTvqhdjwcqtzVmw3xtjUgkMBnilEuMANtqywfnyN8FLn3iLy CtuJALGoePjhFQK9cEOGvvHJYv7AaBc= From: Thorsten Blum To: Masahiro Yamada Cc: Thorsten Blum , linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] kconfig: nconf: Fix typo in function comment Date: Sat, 19 Oct 2024 23:17:47 +0200 Message-ID: <20241019211747.110140-2-thorsten.blum@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" s/handles/handled/ Signed-off-by: Thorsten Blum --- scripts/kconfig/nconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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_it= em) return; } =20 -/* return !=3D 0 to indicate the key was handles */ +/* return !=3D 0 to indicate the key was handled */ static int process_special_keys(int *key, struct menu *menu) { int i; --=20 2.47.0