From 511ccf46db80af546e806159464d58b8ee12ca3f Mon Sep 17 00:00:00 2001 From: Michael Goderbauer Date: Tue, 9 Apr 2024 16:14:23 -0700 Subject: [PATCH] Correct doc for AnimationMin (#146531) Fixes https://github.com/flutter/flutter/issues/146485 --- packages/flutter/lib/src/animation/animations.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/src/animation/animations.dart b/packages/flutter/lib/src/animation/animations.dart index 6aa6c72684e..dc4211e7978 100644 --- a/packages/flutter/lib/src/animation/animations.dart +++ b/packages/flutter/lib/src/animation/animations.dart @@ -748,7 +748,7 @@ class AnimationMax extends CompoundAnimation { /// An animation that tracks the minimum of two other animations. /// -/// The [value] of this animation is the maximum of the values of +/// The [value] of this animation is the minimum of the values of /// [first] and [next]. class AnimationMin extends CompoundAnimation { /// Creates an [AnimationMin].