Skip to content

Commit d689833

Browse files
authored
Merge pull request #1811 from nschonni/typo-beginning
typo: begining -> beginning
2 parents 44e37e7 + 7abec96 commit d689833

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

docs/vs-2015/snippets/csharp/VS_Snippets_Wpf/FlowDocumentSnippets/CSharp/Window1.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ void BlocksProperty()
106106
flowDoc.Blocks.Add(new Paragraph(new Run("Text to append...")));
107107
// </Snippet_FlowDocumentBlocksAdd>
108108

109-
// Insert a content block at the begining of the FlowDocument.
109+
// Insert a content block at the beginning of the FlowDocument.
110110
// <Snippet_FlowDocumentBlocksInsert>
111111
Paragraph p = new Paragraph(new Run("Text to insert..."));
112112
flowDoc.Blocks.InsertBefore(flowDoc.Blocks.FirstBlock, p);
@@ -136,7 +136,7 @@ void BlocksPropertyGen()
136136
secx.Blocks.Add(new Paragraph(new Run("A bit of text content...")));
137137
// </Snippet_SectionBlocksAdd>
138138

139-
// Insert a content block at the begining of the Section.
139+
// Insert a content block at the beginning of the Section.
140140
// <Snippet_SectionBlocksInsert>
141141
Paragraph parx = new Paragraph(new Run("Text to insert..."));
142142
secx.Blocks.InsertBefore(secx.Blocks.FirstBlock, parx);
@@ -224,7 +224,7 @@ void ContentStartEnd()
224224
"Since the new FlowDocument is empty at this point, this will be the initial content " +
225225
"in the FlowDocument."
226226
)));
227-
// Insert a line-break at the beginnign of the document, before the previously inserted paragraph.
227+
// Insert a line-break at the beginning of the document, before the previously inserted paragraph.
228228
flowDoc.Blocks.InsertBefore(flowDoc.Blocks.FirstBlock, new Paragraph(new LineBreak()));
229229
// Insert another paragraph at the beginning of the document.
230230
flowDoc.Blocks.InsertBefore(flowDoc.Blocks.FirstBlock, new Paragraph(new Run(

docs/vs-2015/snippets/csharp/VS_Snippets_Wpf/ListSnippets/CSharp/Window1.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ void ListItemsProp()
8080
listx.ListItems.Add(new ListItem(new Paragraph(new Run("A bit of text content..."))));
8181
listx.ListItems.Add(new ListItem(new Paragraph(new Run("A bit more text content..."))));
8282

83-
// Insert a ListItem at the begining of the List.
83+
// Insert a ListItem at the beginning of the List.
8484
ListItem lix = new ListItem(new Paragraph(new Run("ListItem to insert...")));
8585
listx.ListItems.InsertBefore(listx.ListItems.FirstListItem, lix);
8686

docs/vs-2015/snippets/csharp/VS_Snippets_Wpf/SpanSnippets/CSharp/Window1.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ void InlinesProp()
126126
spanx.Inlines.Add(new Run("A bit more text content..."));
127127
// </Snippet_SpanInlinesAdd>
128128

129-
// Insert a content inline at the begining of the Span.
129+
// Insert a content inline at the beginning of the Span.
130130
// <Snippet_SpanInlinesInsert>
131131
Run runx = new Run("Text to insert...");
132132
spanx.Inlines.InsertBefore(spanx.Inlines.FirstInline, runx);

docs/vs-2015/snippets/visualbasic/VS_Snippets_Wpf/FlowDocumentSnippets/visualbasic/window1.xaml.vb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Namespace FlowDocumentSnippets
9494
flowDoc.Blocks.Add(New Paragraph(New Run("Text to append...")))
9595
' </Snippet_FlowDocumentBlocksAdd>
9696

97-
' Insert a content block at the begining of the FlowDocument.
97+
' Insert a content block at the beginning of the FlowDocument.
9898
' <Snippet_FlowDocumentBlocksInsert>
9999
Dim p As New Paragraph(New Run("Text to insert..."))
100100
flowDoc.Blocks.InsertBefore(flowDoc.Blocks.FirstBlock, p)
@@ -123,7 +123,7 @@ Namespace FlowDocumentSnippets
123123
secx.Blocks.Add(New Paragraph(New Run("A bit of text content...")))
124124
' </Snippet_SectionBlocksAdd>
125125

126-
' Insert a content block at the begining of the Section.
126+
' Insert a content block at the beginning of the Section.
127127
' <Snippet_SectionBlocksInsert>
128128
Dim parx As New Paragraph(New Run("Text to insert..."))
129129
secx.Blocks.InsertBefore(secx.Blocks.FirstBlock, parx)
@@ -191,7 +191,7 @@ Namespace FlowDocumentSnippets
191191

192192
' Insert an initial paragraph at the beginning of the empty FlowDocument.
193193
flowDocStart.Blocks.Add(New Paragraph(New Run("Since the new FlowDocument is empty at this point, this will be the initial content " & "in the FlowDocument.")))
194-
' Insert a line-break at the beginnign of the document, before the previously inserted paragraph.
194+
' Insert a line-break at the beginning of the document, before the previously inserted paragraph.
195195
flowDocStart.Blocks.InsertBefore(flowDocStart.Blocks.FirstBlock, New Paragraph(New LineBreak()))
196196
' Insert another paragraph at the beginning of the document.
197197
flowDocStart.Blocks.InsertBefore(flowDocStart.Blocks.FirstBlock, New Paragraph(New Run("This paragraph will be inserted before the previously added paragraph, replacing the previously" & "added paragraph as the first paragraph in the document.")))

docs/vs-2015/snippets/visualbasic/VS_Snippets_Wpf/ListSnippets/visualbasic/window1.xaml.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Namespace ListSnippets
7474
listx.ListItems.Add(New ListItem(New Paragraph(New Run("A bit of text content..."))))
7575
listx.ListItems.Add(New ListItem(New Paragraph(New Run("A bit more text content..."))))
7676

77-
' Insert a ListItem at the begining of the List.
77+
' Insert a ListItem at the beginning of the List.
7878
Dim lix As New ListItem(New Paragraph(New Run("ListItem to insert...")))
7979
listx.ListItems.InsertBefore(listx.ListItems.FirstListItem, lix)
8080

docs/vs-2015/snippets/visualbasic/VS_Snippets_Wpf/SpanSnippets/visualbasic/window1.xaml.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Namespace SpanSnippets
113113
spanx.Inlines.Add(New Run("A bit more text content..."))
114114
' </Snippet_SpanInlinesAdd>
115115

116-
' Insert a content inline at the begining of the Span.
116+
' Insert a content inline at the beginning of the Span.
117117
' <Snippet_SpanInlinesInsert>
118118
Dim runx As New Run("Text to insert...")
119119
spanx.Inlines.InsertBefore(spanx.Inlines.FirstInline, runx)

0 commit comments

Comments
 (0)