From patchwork Thu Dec 19 18:14:32 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Tromey X-Patchwork-Id: 36967 Received: (qmail 107280 invoked by alias); 19 Dec 2019 18:14:37 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 107272 invoked by uid 89); 19 Dec 2019 18:14:37 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-22.4 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy=25250, FIELD_SIGNED, field_signed, H*F:U*tromey X-HELO: rock.gnat.com Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 19 Dec 2019 18:14:35 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 2841C11667B; Thu, 19 Dec 2019 13:14:34 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id WzcpBAvQrZXd; Thu, 19 Dec 2019 13:14:34 -0500 (EST) Received: from murgatroyd.Home (75-166-123-50.hlrn.qwest.net [75.166.123.50]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by rock.gnat.com (Postfix) with ESMTPSA id D97F311645B; Thu, 19 Dec 2019 13:14:33 -0500 (EST) From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [FYI] Fix comment in field_kind Date: Thu, 19 Dec 2019 11:14:32 -0700 Message-Id: <20191219181432.7717-1-tromey@adacore.com> MIME-Version: 1.0 Christian pointed out that the new comment in field_kind is un-grammatical. This fixes it. gdb/ChangeLog 2019-12-19 Tom Tromey * ui-out.h (enum class field_kind): Fix comment. Change-Id: I6608ff18e29f1af98a0ff77012afe28b3d4602f4 --- gdb/ChangeLog | 4 ++++ gdb/ui-out.h | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gdb/ui-out.h b/gdb/ui-out.h index c3ef8a57006..a176e0e7970 100644 --- a/gdb/ui-out.h +++ b/gdb/ui-out.h @@ -77,9 +77,9 @@ enum ui_out_type /* The possible kinds of fields. */ enum class field_kind { - /* "FIELD_STRING" needs has a funny name to avoid clashes with - tokens named "STRING". See PR build/25250. FIELD_SIGNED is - given a similar name for consistency. */ + /* "FIELD_STRING" needs a funny name to avoid clashes with tokens + named "STRING". See PR build/25250. FIELD_SIGNED is given a + similar name for consistency. */ FIELD_SIGNED, FIELD_STRING, };