From 6cf92f138211fe352929a0beca30075cc96cf504 Mon Sep 17 00:00:00 2001 From: Nico Vertriest Date: Fri, 26 Feb 2021 07:48:42 +0100 Subject: [PATCH] Doc: Fix link errors qtbase Task-number: QTBUG-90662 Change-Id: I17147d149d9f222c142853805443aff94c5a5ff7 Reviewed-by: Edward Welbourne --- src/corelib/tools/qmargins.cpp | 2 +- src/testlib/qtestcase.qdoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/corelib/tools/qmargins.cpp b/src/corelib/tools/qmargins.cpp index 51d20753d9..8f18528ce2 100644 --- a/src/corelib/tools/qmargins.cpp +++ b/src/corelib/tools/qmargins.cpp @@ -670,7 +670,7 @@ QDebug operator<<(QDebug dbg, const QMargins &m) Returns a QMarginsF object that is formed by dividing the components of the given \a lhs margins by the given \a rhs divisor. - The divisor must be neither zero nor NaN. + The divisor must not be either zero or NaN. \sa QMarginsF::operator*=(), QMarginsF::operator/=() */ diff --git a/src/testlib/qtestcase.qdoc b/src/testlib/qtestcase.qdoc index 4436becb43..08f111b43e 100644 --- a/src/testlib/qtestcase.qdoc +++ b/src/testlib/qtestcase.qdoc @@ -123,7 +123,7 @@ \snippet code/src_qtestlib_qtestcase.cpp 2 When comparing floating-point types (\c float, \c double, and \c qfloat16), - \l qFuzzyCompare() is used for finite values. If qFuzzyIsNull() is true for + \l {qFuzzyCompare()} is used for finite values. If \l {qFuzzyIsNull()} is true for both values, they are also considered equal. Infinities match if they have the same sign, and any NaN as actual value matches with any NaN as expected value (even though NaN != NaN, even when they're identical).