Skip to content

Commit c7eb883

Browse files
nschonnimairaw
authored andcommitted
typo: comand -> command (#784)
1 parent 435493d commit c7eb883

File tree

4 files changed

+9
-9
lines changed
  • snippets
    • csharp
      • VS_Snippets_Remoting/System.Net.Sockets.MulticastOptionListener/CS
      • VS_Snippets_Wpf/CommandLibrarySnippets/CSharp
    • visualbasic
      • VS_Snippets_Remoting/System.Net.Sockets.MulticastOptionListener/VB
      • VS_Snippets_Wpf/CommandLibrarySnippets/visualbasic

4 files changed

+9
-9
lines changed

snippets/csharp/VS_Snippets_Remoting/System.Net.Sockets.MulticastOptionListener/CS/listener.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
// follows:
2727
// Open a console window and run the listener from the command line.
2828
// In another console window run the sender. In both cases you must specify
29-
// the local IPAddress to use. To obtain this address run the ipconfig comand
29+
// the local IPAddress to use. To obtain this address run the ipconfig command
3030
// from the command line.
3131
//
3232
namespace Mssc.TransportProtocols.Utilities
@@ -141,4 +141,4 @@ public static void Main(String[] args)
141141
}
142142
}
143143
}
144-
// </Snippet1>
144+
// </Snippet1>

snippets/csharp/VS_Snippets_Wpf/CommandLibrarySnippets/CSharp/Window1.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ private void OnLoaded(object sender, RoutedEventArgs e)
125125
KeyGesture pasteBind = new KeyGesture(Key.V, ModifierKeys.Alt);
126126
ApplicationCommands.Paste.InputGestures.Add(pasteBind);
127127

128-
// <SnippetInputBindingAddingComand>
128+
// <SnippetInputBindingAddingCommand>
129129
KeyGesture HelpCmdKeyGesture = new KeyGesture(Key.H,
130130
ModifierKeys.Alt);
131131

@@ -134,7 +134,7 @@ private void OnLoaded(object sender, RoutedEventArgs e)
134134
HelpCmdKeyGesture);
135135

136136
this.InputBindings.Add(inputBinding);
137-
// </SnippetInputBindingAddingComand>
137+
// </SnippetInputBindingAddingCommand>
138138

139139
// <SnippetMouseBindingMouseAction>
140140
MouseGesture CutCmdMouseGesture = new MouseGesture(
@@ -262,4 +262,4 @@ private void cmdButtonClick(object sender, RoutedEventArgs e)
262262
}
263263

264264
}
265-
}
265+
}

snippets/visualbasic/VS_Snippets_Remoting/System.Net.Sockets.MulticastOptionListener/VB/listener.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
' follows:
1919
' Open a console window and run the listener from the command line.
2020
' In another console window run the sender. In both cases you must specify
21-
' the local IPAddress to use. To obtain this address run the ipconfig comand
21+
' the local IPAddress to use. To obtain this address run the ipconfig command
2222
' from the command line.
2323

2424

snippets/visualbasic/VS_Snippets_Wpf/CommandLibrarySnippets/visualbasic/window1.xaml.vb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,14 +108,14 @@ Namespace SDKSamples
108108
Dim pasteBind As New KeyGesture(Key.V, ModifierKeys.Alt)
109109
ApplicationCommands.Paste.InputGestures.Add(pasteBind)
110110

111-
' <SnippetInputBindingAddingComand>
111+
' <SnippetInputBindingAddingCommand>
112112
Dim HelpCmdKeyGesture As New KeyGesture(Key.H, ModifierKeys.Alt)
113113

114114
Dim inputBinding As InputBinding
115115
inputBinding = New InputBinding(ApplicationCommands.Help, HelpCmdKeyGesture)
116116

117117
Me.InputBindings.Add(inputBinding)
118-
' </SnippetInputBindingAddingComand>
118+
' </SnippetInputBindingAddingCommand>
119119

120120
' <SnippetMouseBindingMouseAction>
121121
Dim CutCmdMouseGesture As New MouseGesture(MouseAction.MiddleClick)
@@ -220,4 +220,4 @@ Namespace SDKSamples
220220
End Sub
221221

222222
End Class
223-
End Namespace
223+
End Namespace

0 commit comments

Comments
 (0)