From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 509D53858C2C; Mon, 16 Jan 2023 10:29:16 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 509D53858C2C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1673864956; bh=4cYhnqm/Uf6fztdbZLmODqAXiJ2KpaiFDof9VNTNFX8=; h=From:To:Subject:Date:From; b=CTMM9jco3PH5kPKJU3+836NuEyX4olpIOjhU5rAr2y9vDoFu19px73JclxpoTqxZC 1hNPoeWJSIrN1MkOCmSyZ+GbQcasgpqrLgghcpjgpIJ0JKEJ9BQcvs4qFNu5sxsd7L e5Rs30qV5nRm4NMvDDCD3mIRDyrKMW6Lh3Y4C6ZI= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jonathan Wakely To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-5190] doc: Fix grammar typo in description of malloc attribute X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/master X-Git-Oldrev: 8da14bd45e9759c55c0b4c744a966b78e16df49a X-Git-Newrev: dfc5ea6b0ef6ec57790e972f488062e9e18c59cf Message-Id: <20230116102916.509D53858C2C@sourceware.org> Date: Mon, 16 Jan 2023 10:29:16 +0000 (GMT) List-Id: https://gcc.gnu.org/g:dfc5ea6b0ef6ec57790e972f488062e9e18c59cf commit r13-5190-gdfc5ea6b0ef6ec57790e972f488062e9e18c59cf Author: Jonathan Wakely Date: Mon Jan 16 09:56:58 2023 +0000 doc: Fix grammar typo in description of malloc attribute gcc/ChangeLog: * doc/extend.texi (Common Function Attributes): Fix grammar. Diff: --- gcc/doc/extend.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 1103e9936f7..867ef07ea4b 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -3383,7 +3383,7 @@ Attribute @code{malloc} indicates that a function is @code{malloc}-like, i.e., that the pointer @var{P} returned by the function cannot alias any other pointer valid when the function returns, and moreover no pointers to valid objects occur in any storage addressed by @var{P}. In -addition, the GCC predicts that a function with the attribute returns +addition, GCC predicts that a function with the attribute returns non-null in most cases. Independently, the form of the attribute with one or two arguments