Skip to content

Commit c344afa

Browse files
nschonniBillWagner
authored andcommitted
typo: Initital -> Initial (dotnet#2142)
1 parent f645303 commit c344afa

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

xml/System.Windows.Forms/ItemCheckEventArgs.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
3434
3535
## Examples
36-
The following code example demonstrates a checked <xref:System.Windows.Forms.ListView> control that handles the <xref:System.Windows.Forms.ListView.ItemCheck?displayProperty=nameWithType> event. The method uses the <xref:System.Windows.Forms.ItemCheckEventArgs.CurrentValue%2A> and <xref:System.Windows.Forms.ItemCheckEventArgs.Index%2A> properties of the <xref:System.Windows.Forms.ItemCheckEventArgs> object to retrieve and tally the price of the menu items selected. To run this example paste the following code in a form containing a <xref:System.Windows.Forms.ListView> named `ListView1` and a <xref:System.Windows.Forms.TextBox> named `Textbox1`. Call the `InititalizeListView` method from the form's constructor or `Load` method. Ensure all events are associated with their event-handling methods.
36+
The following code example demonstrates a checked <xref:System.Windows.Forms.ListView> control that handles the <xref:System.Windows.Forms.ListView.ItemCheck?displayProperty=nameWithType> event. The method uses the <xref:System.Windows.Forms.ItemCheckEventArgs.CurrentValue%2A> and <xref:System.Windows.Forms.ItemCheckEventArgs.Index%2A> properties of the <xref:System.Windows.Forms.ItemCheckEventArgs> object to retrieve and tally the price of the menu items selected. To run this example paste the following code in a form containing a <xref:System.Windows.Forms.ListView> named `ListView1` and a <xref:System.Windows.Forms.TextBox> named `Textbox1`. Call the `InitializeListView` method from the form's constructor or `Load` method. Ensure all events are associated with their event-handling methods.
3737
3838
[!code-cpp[System.Windows.Forms.ListView2#1](~/samples/snippets/cpp/VS_Snippets_Winforms/System.Windows.Forms.ListView2/CPP/form1.cpp#1)]
3939
[!code-csharp[System.Windows.Forms.ListView2#1](~/samples/snippets/csharp/VS_Snippets_Winforms/System.Windows.Forms.ListView2/CS/form1.cs#1)]
@@ -115,7 +115,7 @@
115115
116116
117117
## Examples
118-
The following code example demonstrates a checked <xref:System.Windows.Forms.ListView> control that handles the <xref:System.Windows.Forms.ListView.ItemChecked?displayProperty=nameWithType> event. The method uses the <xref:System.Windows.Forms.ItemCheckEventArgs.CurrentValue%2A> and <xref:System.Windows.Forms.ItemCheckEventArgs.Index%2A> properties of the <xref:System.Windows.Forms.ItemCheckEventArgs> object to retrieve and tally the price of the menu items selected. To run this example paste the following code in a form containing a <xref:System.Windows.Forms.ListView> named `ListView1` and a <xref:System.Windows.Forms.TextBox> named `Textbox1`. Call the `InititalizeListView` method from the form's constructor or `Load` method. Ensure all events are associated with their event-handling methods.
118+
The following code example demonstrates a checked <xref:System.Windows.Forms.ListView> control that handles the <xref:System.Windows.Forms.ListView.ItemChecked?displayProperty=nameWithType> event. The method uses the <xref:System.Windows.Forms.ItemCheckEventArgs.CurrentValue%2A> and <xref:System.Windows.Forms.ItemCheckEventArgs.Index%2A> properties of the <xref:System.Windows.Forms.ItemCheckEventArgs> object to retrieve and tally the price of the menu items selected. To run this example paste the following code in a form containing a <xref:System.Windows.Forms.ListView> named `ListView1` and a <xref:System.Windows.Forms.TextBox> named `Textbox1`. Call the `InitializeListView` method from the form's constructor or `Load` method. Ensure all events are associated with their event-handling methods.
119119
120120
[!code-cpp[System.Windows.Forms.ListView2#1](~/samples/snippets/cpp/VS_Snippets_Winforms/System.Windows.Forms.ListView2/CPP/form1.cpp#1)]
121121
[!code-csharp[System.Windows.Forms.ListView2#1](~/samples/snippets/csharp/VS_Snippets_Winforms/System.Windows.Forms.ListView2/CS/form1.cs#1)]
@@ -163,7 +163,7 @@
163163
164164
165165
## Examples
166-
The following code example demonstrates a checked <xref:System.Windows.Forms.ListView> control that handles the <xref:System.Windows.Forms.ListView.ItemChecked?displayProperty=nameWithType> event. The method uses the <xref:System.Windows.Forms.ItemCheckEventArgs.CurrentValue%2A> and <xref:System.Windows.Forms.ItemCheckEventArgs.Index%2A> properties of the <xref:System.Windows.Forms.ItemCheckEventArgs> object to retrieve and tally the price of the menu items selected. To run this example paste the following code in a form containing a <xref:System.Windows.Forms.ListView> named `ListView1` and a <xref:System.Windows.Forms.TextBox> named `Textbox1`. Call the `InititalizeListView` method from the form's constructor or `Load` method. Ensure all events are associated with their event-handling methods.
166+
The following code example demonstrates a checked <xref:System.Windows.Forms.ListView> control that handles the <xref:System.Windows.Forms.ListView.ItemChecked?displayProperty=nameWithType> event. The method uses the <xref:System.Windows.Forms.ItemCheckEventArgs.CurrentValue%2A> and <xref:System.Windows.Forms.ItemCheckEventArgs.Index%2A> properties of the <xref:System.Windows.Forms.ItemCheckEventArgs> object to retrieve and tally the price of the menu items selected. To run this example paste the following code in a form containing a <xref:System.Windows.Forms.ListView> named `ListView1` and a <xref:System.Windows.Forms.TextBox> named `Textbox1`. Call the `InitializeListView` method from the form's constructor or `Load` method. Ensure all events are associated with their event-handling methods.
167167
168168
[!code-cpp[System.Windows.Forms.ListView2#1](~/samples/snippets/cpp/VS_Snippets_Winforms/System.Windows.Forms.ListView2/CPP/form1.cpp#1)]
169169
[!code-csharp[System.Windows.Forms.ListView2#1](~/samples/snippets/csharp/VS_Snippets_Winforms/System.Windows.Forms.ListView2/CS/form1.cs#1)]

xml/System.Windows.Forms/ListView.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,7 @@
839839
840840
841841
## Examples
842-
The following code example demonstrates initializing a <xref:System.Windows.Forms.ListView> control to contain check boxes. It also demonstrates how to use the <xref:System.Windows.Forms.ListView.BeginUpdate%2A> and <xref:System.Windows.Forms.ListView.EndUpdate%2A> methods. To run this example, paste the following code into a form that contains a <xref:System.Windows.Forms.ListView> named `ListView1`. Call the `InititalizeListView` method from the form's constructor or `Load` method.
842+
The following code example demonstrates initializing a <xref:System.Windows.Forms.ListView> control to contain check boxes. It also demonstrates how to use the <xref:System.Windows.Forms.ListView.BeginUpdate%2A> and <xref:System.Windows.Forms.ListView.EndUpdate%2A> methods. To run this example, paste the following code into a form that contains a <xref:System.Windows.Forms.ListView> named `ListView1`. Call the `InitializeListView` method from the form's constructor or `Load` method.
843843
844844
[!code-cpp[System.Windows.Forms.ListView2#1](~/samples/snippets/cpp/VS_Snippets_Winforms/System.Windows.Forms.ListView2/CPP/form1.cpp#1)]
845845
[!code-csharp[System.Windows.Forms.ListView2#1](~/samples/snippets/csharp/VS_Snippets_Winforms/System.Windows.Forms.ListView2/CS/form1.cs#1)]
@@ -1087,7 +1087,7 @@
10871087
10881088
10891089
## Examples
1090-
The following code example demonstrates a checked <xref:System.Windows.Forms.ListView> that handles the <xref:System.Windows.Forms.ListView.ItemChecked> event. The example uses the <xref:System.Windows.Forms.ListView.CheckedItems%2A> property to tally a new price every time that an item is checked or unchecked. To run this example, paste the following code into a form that contains a <xref:System.Windows.Forms.ListView> named `ListView1` and a <xref:System.Windows.Forms.TextBox> named `Textbox1`. Call the `InititalizeListView` method from the form's constructor or `Load` method.
1090+
The following code example demonstrates a checked <xref:System.Windows.Forms.ListView> that handles the <xref:System.Windows.Forms.ListView.ItemChecked> event. The example uses the <xref:System.Windows.Forms.ListView.CheckedItems%2A> property to tally a new price every time that an item is checked or unchecked. To run this example, paste the following code into a form that contains a <xref:System.Windows.Forms.ListView> named `ListView1` and a <xref:System.Windows.Forms.TextBox> named `Textbox1`. Call the `InitializeListView` method from the form's constructor or `Load` method.
10911091
10921092
[!code-cpp[System.Windows.Forms.ListView2#1](~/samples/snippets/cpp/VS_Snippets_Winforms/System.Windows.Forms.ListView2/CPP/form1.cpp#1)]
10931093
[!code-csharp[System.Windows.Forms.ListView2#1](~/samples/snippets/csharp/VS_Snippets_Winforms/System.Windows.Forms.ListView2/CS/form1.cs#1)]
@@ -1722,7 +1722,7 @@
17221722
17231723
17241724
## Examples
1725-
The following code example demonstrates initializing a <xref:System.Windows.Forms.ListView> control to contain check boxes. It also demonstrates using the <xref:System.Windows.Forms.ListView.BeginUpdate%2A> and <xref:System.Windows.Forms.ListView.EndUpdate%2A> methods. To run this example, paste the following code into a form containing a <xref:System.Windows.Forms.ListView> named `ListView1`. Call the `InititalizeListView` method from the form's constructor or `Load` method.
1725+
The following code example demonstrates initializing a <xref:System.Windows.Forms.ListView> control to contain check boxes. It also demonstrates using the <xref:System.Windows.Forms.ListView.BeginUpdate%2A> and <xref:System.Windows.Forms.ListView.EndUpdate%2A> methods. To run this example, paste the following code into a form containing a <xref:System.Windows.Forms.ListView> named `ListView1`. Call the `InitializeListView` method from the form's constructor or `Load` method.
17261726
17271727
[!code-cpp[System.Windows.Forms.ListView2#1](~/samples/snippets/cpp/VS_Snippets_Winforms/System.Windows.Forms.ListView2/CPP/form1.cpp#1)]
17281728
[!code-csharp[System.Windows.Forms.ListView2#1](~/samples/snippets/csharp/VS_Snippets_Winforms/System.Windows.Forms.ListView2/CS/form1.cs#1)]
@@ -2849,7 +2849,7 @@
28492849
28502850
28512851
## Examples
2852-
The following code example demonstrates a checked <xref:System.Windows.Forms.ListView> control that handles the <xref:System.Windows.Forms.ListView.ItemCheck> event. The method uses the <xref:System.Windows.Forms.ItemCheckEventArgs.CurrentValue%2A?displayProperty=nameWithType> and <xref:System.Windows.Forms.ItemCheckEventArgs.Index%2A?displayProperty=nameWithType> properties to retrieve and tally the price of the menu items selected. To run this example, paste the following code into a form containing a `ListView` named `ListView1` and a `TextBox` named `Textbox1`. Call the `InititalizeListView` method from the form's constructor or `Load` method. Ensure that the <xref:System.Windows.Forms.ListView.ItemCheck> event is associated with the event handler in this example.
2852+
The following code example demonstrates a checked <xref:System.Windows.Forms.ListView> control that handles the <xref:System.Windows.Forms.ListView.ItemCheck> event. The method uses the <xref:System.Windows.Forms.ItemCheckEventArgs.CurrentValue%2A?displayProperty=nameWithType> and <xref:System.Windows.Forms.ItemCheckEventArgs.Index%2A?displayProperty=nameWithType> properties to retrieve and tally the price of the menu items selected. To run this example, paste the following code into a form containing a `ListView` named `ListView1` and a `TextBox` named `Textbox1`. Call the `InitializeListView` method from the form's constructor or `Load` method. Ensure that the <xref:System.Windows.Forms.ListView.ItemCheck> event is associated with the event handler in this example.
28532853
28542854
[!code-cpp[System.Windows.Forms.ListView2#1](~/samples/snippets/cpp/VS_Snippets_Winforms/System.Windows.Forms.ListView2/CPP/form1.cpp#1)]
28552855
[!code-csharp[System.Windows.Forms.ListView2#1](~/samples/snippets/csharp/VS_Snippets_Winforms/System.Windows.Forms.ListView2/CS/form1.cs#1)]

xml/System/Char.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2282,7 +2282,7 @@ When a managed <xref:System.Char> type, which is represented as a Unicode UTF-16
22822282
<format type="text/markdown"><![CDATA[
22832283
22842284
## Remarks
2285-
Valid punctuation marks are members of the following categories in <xref:System.Globalization.UnicodeCategory>: `ConnectorPunctuation`, `DashPunctuation`, `OpenPunctuation`, `ClosePunctuation`, `InititalQuotePunctuation`, `FinalQuotePunctuation`, or `OtherPunctuation`. They include characters with the Unicode code points listed in the following table.
2285+
Valid punctuation marks are members of the following categories in <xref:System.Globalization.UnicodeCategory>: `ConnectorPunctuation`, `DashPunctuation`, `OpenPunctuation`, `ClosePunctuation`, `InitialQuotePunctuation`, `FinalQuotePunctuation`, or `OtherPunctuation`. They include characters with the Unicode code points listed in the following table.
22862286
22872287
|||||
22882288
|-|-|-|-|
@@ -2358,7 +2358,7 @@ When a managed <xref:System.Char> type, which is represented as a Unicode UTF-16
23582358
<format type="text/markdown"><![CDATA[
23592359
23602360
## Remarks
2361-
Valid punctuation marks are members of the following categories in <xref:System.Globalization.UnicodeCategory>: `ConnectorPunctuation`, `DashPunctuation`, `OpenPunctuation`, `ClosePunctuation`, `InititalQuotePunctuation`, `FinalQuotePunctuation`, or `OtherPunctuation`. They include characters with the Unicode code points listed in the following table.
2361+
Valid punctuation marks are members of the following categories in <xref:System.Globalization.UnicodeCategory>: `ConnectorPunctuation`, `DashPunctuation`, `OpenPunctuation`, `ClosePunctuation`, `InitialQuotePunctuation`, `FinalQuotePunctuation`, or `OtherPunctuation`. They include characters with the Unicode code points listed in the following table.
23622362
23632363
|||||
23642364
|-|-|-|-|
@@ -2453,7 +2453,7 @@ When a managed <xref:System.Char> type, which is represented as a Unicode UTF-16
24532453
## Remarks
24542454
Character positions in a string are indexed starting from zero.
24552455
2456-
Valid punctuation marks are members of the following categories in <xref:System.Globalization.UnicodeCategory>: `ConnectorPunctuation`, `DashPunctuation`, `OpenPunctuation`, `ClosePunctuation`, `InititalQuotePunctuation`, `FinalQuotePunctuation`, or `OtherPunctuation`. They include characters with the Unicode code points listed in the following table.
2456+
Valid punctuation marks are members of the following categories in <xref:System.Globalization.UnicodeCategory>: `ConnectorPunctuation`, `DashPunctuation`, `OpenPunctuation`, `ClosePunctuation`, `InitialQuotePunctuation`, `FinalQuotePunctuation`, or `OtherPunctuation`. They include characters with the Unicode code points listed in the following table.
24572457
24582458
|||||
24592459
|-|-|-|-|

0 commit comments

Comments
 (0)