From 4fc15c851a27667b7c0c87d5419d218dc96fbb5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danilo=20R=C3=AAgo?= <31525418+daniloapr@users.noreply.github.com> Date: Thu, 12 May 2022 20:14:08 -0300 Subject: [PATCH] docs: update Cubic constructor doc. (#103555) --- packages/flutter/lib/src/animation/curves.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/src/animation/curves.dart b/packages/flutter/lib/src/animation/curves.dart index 1f9ec029d5e..c9eb57ce50f 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),