Skip to content

Commit 4fc15c8

Browse files
authored
docs: update Cubic constructor doc. (#103555)
1 parent 190d776 commit 4fc15c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/flutter/lib/src/animation/curves.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ class Cubic extends Curve {
302302
/// Rather than creating a new instance, consider using one of the common
303303
/// cubic curves in [Curves].
304304
///
305-
/// The [a] (x1), [b](x2), [c](y1), and [d](y2) arguments must not be null.
305+
/// The [a] (x1), [b] (y1), [c] (x2) and [d] (y2) arguments must not be null.
306306
const Cubic(this.a, this.b, this.c, this.d)
307307
: assert(a != null),
308308
assert(b != null),

0 commit comments

Comments
 (0)