Skip to content

Commit 94ccf3e

Browse files
authored
Merge pull request #10927 from changeworld/patch-9
Fix typo: symetrical -> symmetrical
2 parents 6536eb6 + d8c5d0c commit 94ccf3e

File tree

1 file changed

+3
-3
lines changed
  • docs/snippets/cpp/VS_Snippets_Winforms/System.Drawing.Drawing2D.ClassicGraphicsPathExamples/CPP

1 file changed

+3
-3
lines changed

docs/snippets/cpp/VS_Snippets_Winforms/System.Drawing.Drawing2D.ClassicGraphicsPathExamples/CPP/form1.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public ref class Form1: public System::Windows::Forms::Form
116116
private:
117117
void AddClosedCurveExample( PaintEventArgs^ e )
118118
{
119-
// Creates a symetrical, closed curve.
119+
// Creates a symmetrical, closed curve.
120120
array<Point>^ myArray = {Point(20,100),Point(40,150),Point(60,125),Point(40,100),Point(60,75),Point(40,50)};
121121

122122
// Create a new path and add curve.
@@ -174,7 +174,7 @@ public ref class Form1: public System::Windows::Forms::Form
174174
private:
175175
void AddLineExample( PaintEventArgs^ e )
176176
{
177-
//Create a path and add a symetrical triangle using AddLine.
177+
// Create a path and add a symmetrical triangle using AddLine.
178178
GraphicsPath^ myPath = gcnew GraphicsPath;
179179
myPath->AddLine( 30, 30, 60, 60 );
180180
myPath->AddLine( 60, 60, 0, 60 );
@@ -191,7 +191,7 @@ public ref class Form1: public System::Windows::Forms::Form
191191
private:
192192
void AddLinesExample( PaintEventArgs^ e )
193193
{
194-
// Create a symetrical triangle using an array of points.
194+
// Create a symmetrical triangle using an array of points.
195195
array<Point>^ myArray = {Point(30,30),Point(60,60),Point(0,60),Point(30,30)};
196196

197197
//Create a path and add lines.

0 commit comments

Comments
 (0)