From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-x32b.google.com (mail-wm1-x32b.google.com [IPv6:2a00:1450:4864:20::32b]) by sourceware.org (Postfix) with ESMTPS id E85783949094 for ; Sun, 9 May 2021 16:29:23 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org E85783949094 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=embecosm.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=andrew.burgess@embecosm.com Received: by mail-wm1-x32b.google.com with SMTP id l24-20020a7bc4580000b029014ac3b80020so9808408wmi.1 for ; Sun, 09 May 2021 09:29:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=embecosm.com; s=google; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=Kyeoj1TuhS8QCrsshRc8aswiRQ3qEZSk3XaO5yKJCWQ=; b=fcAIOCCHQUpZArF2dsQdyaH6IKbEF0PQ5GsZ1vXR/KnKXBV6pQr2YMkDAZZQvafQgh fiwBjstXFveUJVUgKDX1wQEBKaGctU0+1NXm4kFR/7iOPjUSxbe1vaLpM1T4jJjY2zH2 sR5+7xpctP+x+YWXx3PndahI7MF1rY/63djtotE6e1PsYfjmpkd+8dcgqAz0u/EGZJSw oC+XG2OCtw0G/cnnZ52ZxXIwIq1JN/IwbjjASzosT1uNoH6Bh6QF3tzxlpB1MU9K8Ejh LOA2zYwFi2Srzxr0ILXeORpjk7KW1clS1B9ghcgvNuYg2OKURepFHNDU7H3jeJNEM3eD Ts/w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=Kyeoj1TuhS8QCrsshRc8aswiRQ3qEZSk3XaO5yKJCWQ=; b=GhjD7ZKPee4BjQ4vRlr4cS3k+ri/K73H8yJxEKpYBckaGGDfphldj3AugCXgHq3TPN n7I4yYswXInuBgz7hzT2G7wpkMwsB5aJm4LCup2qexyN8URDKN16l3hubeUcgh6f4uf1 MnwcL7ybDIfhE7UbpFgPopDRtfK2UCiNZ0UzafVJHp8/Vt/9HrJdOfvAPjdPZLTZFF1S OAhHv8Lhz7IMnz8pqF9m27tircmm0GNhd8Wpl8syB2aSe8B1dehgMhktci5si+TpGnAZ N9JfohgfrNN8mkZdeqodG3zIE4YuoDr6K0OFnO+wDTlqLSB19bZl7T18mg4WpCpN+yF/ d/QA== X-Gm-Message-State: AOAM532glHWJKaQ7u/dYofuRjmh/ChEKkl3UIuZuKNaACWEewDSXpAWH yKHRg4/dgGCL5Wjvly3OR1TRw9HIM06Qkw== X-Google-Smtp-Source: ABdhPJxIzzPS5B6bCM9fIwCSVp5QkrPS2SXC0yLOErlpImTOuiXstsWqqWgBvq7L2qycqQn/qI6UQQ== X-Received: by 2002:a05:600c:2296:: with SMTP id 22mr33834338wmf.165.1620577762913; Sun, 09 May 2021 09:29:22 -0700 (PDT) Received: from localhost (host109-151-46-70.range109-151.btcentralplus.com. [109.151.46.70]) by smtp.gmail.com with ESMTPSA id a126sm22469230wmh.37.2021.05.09.09.29.22 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 09 May 2021 09:29:22 -0700 (PDT) From: Andrew Burgess To: gdb-patches@sourceware.org Subject: [PATCH] gdb/doc: reword a sentence Date: Sun, 9 May 2021 17:29:18 +0100 Message-Id: <20210509162918.2121993-1-andrew.burgess@embecosm.com> X-Mailer: git-send-email 2.25.4 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.1 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 May 2021 16:29:25 -0000 Change this: The available watchpoint types represented by constants are defined in the gdb module: to this: The available watchpoint types are represented by constants defined in the gdb module: The new version matches a similar line a few lines up the document which reads: The available types are represented by constants defined in the gdb module: gdb/doc/ChangeLog: * python.texinfo (Breakpoints In Python): Reword sentence. --- gdb/doc/ChangeLog | 4 ++++ gdb/doc/python.texi | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/doc/python.texi b/gdb/doc/python.texi index 453ddfec03f..4865634537d 100644 --- a/gdb/doc/python.texi +++ b/gdb/doc/python.texi @@ -5500,7 +5500,7 @@ Hardware assisted access watchpoint. @end vtable -The available watchpoint types represented by constants are defined in the +The available watchpoint types are represented by constants defined in the @code{gdb} module: @vtable @code -- 2.25.4