Unverified Commit 4fc15c85 authored by Danilo Rêgo's avatar Danilo Rêgo Committed by GitHub

docs: update Cubic constructor doc. (#103555)

parent 190d7762
......@@ -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),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment