From e1977cc9d39ddbdbbbfdecd8e9a77d55bd80763c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Marcos=20P=2E=20Bezerra?= Date: Sun, 19 Nov 2023 11:51:23 -0300 Subject: [PATCH] Fix typo --- examples/draw/draw_polygon.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/draw/draw_polygon.rs b/examples/draw/draw_polygon.rs index 322562f78..3055b4441 100644 --- a/examples/draw/draw_polygon.rs +++ b/examples/draw/draw_polygon.rs @@ -10,7 +10,7 @@ fn view(app: &App, frame: Frame) { let t = app.time; let draw = app.draw(); - // Clear the background to blue. + // Clear the background to black. draw.background().color(BLACK); // Create an `ngon` of points.