From ba341c97c3fc825797f7022d2fefde9bf311e8d7 Mon Sep 17 00:00:00 2001 From: "Andy (Steve) De George" <67293991+adegeo@users.noreply.github.com> Date: Thu, 30 Sep 2021 13:46:22 -0700 Subject: [PATCH] Update Circle.xaml.cs (#1166) --- .../VS_Snippets_Wpf/DragDropWalkthrough/CS/Circle.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet-desktop-guide/samples/snippets/csharp/VS_Snippets_Wpf/DragDropWalkthrough/CS/Circle.xaml.cs b/dotnet-desktop-guide/samples/snippets/csharp/VS_Snippets_Wpf/DragDropWalkthrough/CS/Circle.xaml.cs index d943b7b..0af5d53 100644 --- a/dotnet-desktop-guide/samples/snippets/csharp/VS_Snippets_Wpf/DragDropWalkthrough/CS/Circle.xaml.cs +++ b/dotnet-desktop-guide/samples/snippets/csharp/VS_Snippets_Wpf/DragDropWalkthrough/CS/Circle.xaml.cs @@ -40,7 +40,7 @@ namespace DragDropWalkthrough data.SetData("Double", circleUI.Height); data.SetData("Object", this); - // Inititate the drag-and-drop operation. + // Initiate the drag-and-drop operation. DragDrop.DoDragDrop(this, data, DragDropEffects.Copy | DragDropEffects.Move); } }