Fix typo in canvas example (#129879)

This commit is contained in:
Loïc Sharma 2023-07-05 16:20:54 -07:00 committed by GitHub
parent 14f1e13edb
commit 997ef1b402
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -96,7 +96,7 @@ ui.Picture paint(ui.Rect paintBounds) {
// the rectangle and smaller circle.
canvas.drawCircle(const ui.Offset(150.0, 300.0), radius, paint);
// When we're done issuing painting commands, we end the recording an receive
// When we're done issuing painting commands, we end the recording and receive
// a Picture, which is an immutable record of the commands we've issued. You
// can draw a Picture into another canvas or include it as part of a
// composited scene.