Correct doc for AnimationMin (#146531)

Fixes https://github.com/flutter/flutter/issues/146485
This commit is contained in:
Michael Goderbauer 2024-04-09 16:14:23 -07:00 committed by GitHub
parent bba260a9d3
commit 511ccf46db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -748,7 +748,7 @@ class AnimationMax<T extends num> extends CompoundAnimation<T> {
/// 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<T extends num> extends CompoundAnimation<T> {
/// Creates an [AnimationMin].