From: Bruno Turcksin Date: Wed, 18 Dec 2024 18:19:14 +0000 (-0500) Subject: Fix a typo in a comment X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F17944%2Fhead;p=dealii.git Fix a typo in a comment --- diff --git a/source/base/polynomials_piecewise.cc b/source/base/polynomials_piecewise.cc index a300659aaa..d9dec4f610 100644 --- a/source/base/polynomials_piecewise.cc +++ b/source/base/polynomials_piecewise.cc @@ -140,7 +140,7 @@ namespace Polynomials { const double offset = step * interval; // ROCm 5.7 throws a floating point exception in debug mode when - // trying to evaluate (x < offset && x > offset + step). Separating + // trying to evaluate (x < offset || x > offset + step). Separating // the conditions fixes the issue. if (x < offset) {