From 21d90d48bab7991306cf5fcfe255f3d15b8975bd Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 31 May 2016 18:58:38 +0200 Subject: [PATCH] Fix another typo in a comment in the drawing sample This went unnoticed in 5e500de7e8dcda9136d3f84f27375d5c164fae73. --- samples/drawing/drawing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/drawing/drawing.cpp b/samples/drawing/drawing.cpp index 3f39dbcfd3..29ac278584 100644 --- a/samples/drawing/drawing.cpp +++ b/samples/drawing/drawing.cpp @@ -1079,7 +1079,7 @@ void MyCanvas::DrawGraphics(wxGraphicsContext* gc) path.CloseSubpath(); path.AddRectangle(-BASE4, -BASE4/2, BASE2, BASE4); - // Now use that path to demonstrate various capabilites of the graphics context + // Now use that path to demonstrate various capabilities of the graphics context gc->PushState(); // save current translation/scale/other state gc->Translate(60, 75); // reposition the context origin