From d4bb2dcdf43ca9d3cd09809ead3a9e5a1c7a85bc Mon Sep 17 00:00:00 2001 From: Julien Fischer Date: Wed, 18 Feb 2026 15:08:23 +1100 Subject: [PATCH] Minor documentation fix. library/math.m: Fix description of solve_quadratic/3. --- library/math.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/math.m b/library/math.m index 5bd4307bf..550beca8e 100644 --- a/library/math.m +++ b/library/math.m @@ -2,7 +2,7 @@ % vim: ft=mercury ts=4 sw=4 et %---------------------------------------------------------------------------% % Copyright (C) 1995-2007, 2011-2012 The University of Melbourne. -% Copyright (C) 2014, 2016-2023 The Mercury team. +% Copyright (C) 2014, 2016-2024, 2026 The Mercury team. % This file is distributed under the terms specified in COPYING.LIB. %---------------------------------------------------------------------------% % @@ -90,7 +90,7 @@ ; two_roots(float, float). % solve_quadratic(A, B, C) = Roots is true if Roots are - % the solutions to the equation Ax^2 + Bx + C. + % the solutions to the equation Ax^2 + Bx + C = 0. % % Domain restriction: A \= 0 %