From patchwork Thu Jul 19 05:46:36 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 10533591 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 4DFC46053F for ; Thu, 19 Jul 2018 05:46:39 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 3053B296F0 for ; Thu, 19 Jul 2018 05:46:39 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 22D94296F9; Thu, 19 Jul 2018 05:46:39 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI, T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B047B296F0 for ; Thu, 19 Jul 2018 05:46:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726179AbeGSG17 (ORCPT ); Thu, 19 Jul 2018 02:27:59 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:37910 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725951AbeGSG17 (ORCPT ); Thu, 19 Jul 2018 02:27:59 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: Content-Type:MIME-Version:Date:Message-ID:Subject:From:To:Sender:Reply-To:Cc: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=sLZmablEFdS2chtM78KWYNYPzty3GVSzJzQit4XporM=; b=EnEhXummO3SOSHn1r15zZT/xH sDGEDqqUi9W/aAoa6l874uinSXWhDYGHkp84Y0NTBQMdxG9VVXCihS7zkGCf5QNCC5huh54D1E9p9 5VdTSOiGxSfFWm6cMvimZZ+dimyjOBN0Kj+38WFHYAuWhYYtUqjSaIbyp89BLUzJB1AGxFyDR2aW1 JPR7jNuLNwI0ZaNCpO38oAPtQnWJgs3xhDAJhYYDdokVXwRMhAT2W2Z/0CLZ2PXpUKUyrxGD1C2TO B0TE4VkD1KWZSX6Zmogqe8U8wIIU67QxDTg2PBbtNslg8r9LC69lZhwYEbU7J5BTDIPhACCGnuixh EGsSg2yTw==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=dragon.dunlab) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fg1lt-0005mx-KM; Thu, 19 Jul 2018 05:46:37 +0000 To: Masahiro Yamada , linux-kbuild From: Randy Dunlap Subject: [PATCH] kbuild: fix typos in description of "choice" in kconfig-language.txt Message-ID: Date: Wed, 18 Jul 2018 22:46:36 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 Content-Language: en-US Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Randy Dunlap Fix a couple of punctuation "typos" in the description of the "choice" keyword. Signed-off-by: Randy Dunlap --- Documentation/kbuild/kconfig-language.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- linux-next-20180717.orig/Documentation/kbuild/kconfig-language.txt +++ linux-next-20180717/Documentation/kbuild/kconfig-language.txt @@ -370,7 +370,7 @@ choices: This defines a choice group and accepts any of the above attributes as options. A choice can only be of type bool or tristate. If no type is -specified for a choice, it's type will be determined by the type of +specified for a choice, its type will be determined by the type of the first choice element in the group or remain unknown if none of the choice elements have a type specified, as well. @@ -384,7 +384,7 @@ A choice accepts another option "optiona choice to 'n' and no entry needs to be selected. If no [symbol] is associated with a choice, then you can not have multiple definitions of that choice. If a [symbol] is associated to the choice, -then you may define the same choice (ie. with the same entries) in another +then you may define the same choice (i.e. with the same entries) in another place. comment: