diff --git a/packages/flutter/lib/src/animation/curves.dart b/packages/flutter/lib/src/animation/curves.dart index 1f9ec029d5..c9eb57ce50 100644 --- a/packages/flutter/lib/src/animation/curves.dart +++ b/packages/flutter/lib/src/animation/curves.dart @@ -302,7 +302,7 @@ class Cubic extends Curve { /// Rather than creating a new instance, consider using one of the common /// cubic curves in [Curves]. /// - /// The [a] (x1), [b](x2), [c](y1), and [d](y2) arguments must not be null. + /// The [a] (x1), [b] (y1), [c] (x2) and [d] (y2) arguments must not be null. const Cubic(this.a, this.b, this.c, this.d) : assert(a != null), assert(b != null),