From 997ef1b4029326b86d659cf5090e75d6b536b715 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Sharma?= <737941+loic-sharma@users.noreply.github.com> Date: Wed, 5 Jul 2023 16:20:54 -0700 Subject: [PATCH] Fix typo in canvas example (#129879) --- examples/layers/raw/canvas.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/layers/raw/canvas.dart b/examples/layers/raw/canvas.dart index 2d178cf2be..8af0ca2fd4 100644 --- a/examples/layers/raw/canvas.dart +++ b/examples/layers/raw/canvas.dart @@ -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.