From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id C3F91384E3B8; Fri, 25 Nov 2022 18:00:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C3F91384E3B8 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1669399257; bh=RGYP4clXPoNdkeAW/0noDea8jSNauxCTGrPIFw80ujM=; h=From:To:Subject:Date:From; b=bITK+FRI5QenF6SuvVeQG4NOvScdeSsaX0A/uZQB4EyosOk8FvY0SuGDkJD6O9d+j V0zQg9wVDWMYNE4fT+eh3EQ7KH0mtM04NNjtCWL13dZ+OiS9LW3rdHEZ8k4RCQBpXE OxtayD05g6kEPFDPGr3sQe8zbl9Q7Lq2lqQU6cvc= From: "ninorpereira at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/107870] New: A possible typo in the documentation of 'FLOOR' Date: Fri, 25 Nov 2022 18:00:57 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ninorpereira at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D107870 Bug ID: 107870 Summary: A possible typo in the documentation of 'FLOOR' Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: ninorpereira at gmail dot com Target Milestone: --- the documentation says: FLOOR(A) returns the greatest integer less than or equal to X. better is: FLOOR(A) returns the greatest integer less than or equal to A. (and then the example must be changed from x to a, or FLOOR(X) returns the greatest integer less than or equal to X (and then the example can stay the same).=