Skip to content

Commit 44e37e7

Browse files
authored
Merge pull request #1810 from nschonni/typo-occurring
typo: occuring -> occurring
2 parents 2537a8f + 90d6a6f commit 44e37e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/vs-2015/snippets/csharp/VS_Snippets_Wpf/basicmanipulation/csharp/mainwindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ void Window_ManipulationDelta(object sender, ManipulationDeltaEventArgs e)
5959
new Rect(rectToMove.RenderSize));
6060

6161
// Check if the rectangle is completely in the window.
62-
// If it is not and intertia is occuring, stop the manipulation.
62+
// If it is not and intertia is occurring, stop the manipulation.
6363
if (e.IsInertial && !containingRect.Contains(shapeBounds))
6464
{
6565
e.Complete();

docs/vs-2015/snippets/visualbasic/VS_Snippets_Wpf/basicmanipulation/visualbasic/mainwindow.xaml.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
New Rect(rectToMove.RenderSize))
4545

4646
' Check if the rectangle is completely in the window.
47-
' If it is not and intertia is occuring, stop the manipulation.
47+
' If it is not and intertia is occurring, stop the manipulation.
4848
If e.IsInertial AndAlso Not containingRect.Contains(shapeBounds) Then
4949
e.Complete()
5050
End If

0 commit comments

Comments
 (0)