From 5d70b332ce4245a0717fee6ec9cb4f02cb8ed84b Mon Sep 17 00:00:00 2001 From: Robert Dusk Date: Thu, 9 Jan 2025 10:18:46 +0100 Subject: [PATCH] Fix typo. (#153) --- docs/guides/components/graphics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/components/graphics.md b/docs/guides/components/graphics.md index 0290cf351..d9053e050 100644 --- a/docs/guides/components/graphics.md +++ b/docs/guides/components/graphics.md @@ -132,7 +132,7 @@ circleGraphics.context .fill('red') ``` -Calling `Graphics.destroy()` will destroy the graphics. If a context was passed to it via the constructor then it will leave the destruction the that context to you. However if the context is internally created (the default), when destroyed the Graphics object will destroy its internal `GraphicsContext`. +Calling `Graphics.destroy()` will destroy the graphics. If a context was passed to it via the constructor then it will leave the destruction of that context to you. However if the context is internally created (the default), when destroyed the Graphics object will destroy its internal `GraphicsContext`. ## Graphics For Display