From 3009ca730d6e6ddbcfaee4dc8b3f247068c0ae05 Mon Sep 17 00:00:00 2001 From: David Boddie Date: Mon, 10 Feb 2025 17:51:16 +0100 Subject: [PATCH] doc: Fix a couple of typos that cause broken links Pick-to: 6.8 Change-Id: I7f9aafa12d98475fc28230fcb25ba6a4570889aa Reviewed-by: Venugopal Shivashankar (cherry picked from commit 3c4ec4de1426e42055a09cbe37b7ea2448da4943) Reviewed-by: Qt Cherry-pick Bot --- src/corelib/doc/src/animation.qdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/corelib/doc/src/animation.qdoc b/src/corelib/doc/src/animation.qdoc index bc85517b8a4..d2e182f4806 100644 --- a/src/corelib/doc/src/animation.qdoc +++ b/src/corelib/doc/src/animation.qdoc @@ -47,7 +47,7 @@ The framework further provides the QVariantAnimation and QAnimationGroup classes, which build on their base case, QAbstractAnimation. Next in the hierarchy is QPropertyAnimation, which is derived from - QVariantAnmiation, and it lets you animate a Qt property of a widget or + QVariantAnimation, and it lets you animate a Qt property of a widget or QObject. The class performs interpolation on the property value using an easing curve. With these in place, you just need a QObject class with a Qt property value that you can animate. @@ -100,7 +100,7 @@ It uses the linear interpolation method to control the speed of animation between the start and end values. Try adding another value in--between the start and end value to see how they are interpolated. - This time use the QPropertyAnimation::setKeyValueAt function to add + This time use the QPropertyAnimation::setKeyValueAt() function to add these values: \code