From 0b722e6c78a5eaae1894d84b0918d682e7dab29e Mon Sep 17 00:00:00 2001 From: pi Date: Sat, 8 Aug 2026 04:14:03 +1200 Subject: [PATCH] docs: fix past participle 'showed' to 'shown' in drawing-to-canvas README --- 6-space-game/2-drawing-to-canvas/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6-space-game/2-drawing-to-canvas/README.md b/6-space-game/2-drawing-to-canvas/README.md index 89e87c695..78114f812 100644 --- a/6-space-game/2-drawing-to-canvas/README.md +++ b/6-space-game/2-drawing-to-canvas/README.md @@ -153,7 +153,7 @@ ctx.fillRect(0, 0, 200, 200); // x, y, width, height You can draw all sorts of things with the Canvas API like: -- **Geometrical shapes**, we've already showed how to draw a rectangle, but there is much more you can draw. +- **Geometrical shapes**, we've already shown how to draw a rectangle, but there is much more you can draw. - **Text**, you can draw a text with any font and color you wish. - **Images**, you can draw an image based off of an image asset like a .jpg or .png for example.