Skip to content

typo: begining -> beginning #1811

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ void BlocksProperty()
flowDoc.Blocks.Add(new Paragraph(new Run("Text to append...")));
// </Snippet_FlowDocumentBlocksAdd>

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

// Insert a content block at the begining of the Section.
// Insert a content block at the beginning of the Section.
// <Snippet_SectionBlocksInsert>
Paragraph parx = new Paragraph(new Run("Text to insert..."));
secx.Blocks.InsertBefore(secx.Blocks.FirstBlock, parx);
Expand Down Expand Up @@ -224,7 +224,7 @@ void ContentStartEnd()
"Since the new FlowDocument is empty at this point, this will be the initial content " +
"in the FlowDocument."
)));
// Insert a line-break at the beginnign of the document, before the previously inserted paragraph.
// Insert a line-break at the beginning of the document, before the previously inserted paragraph.
flowDoc.Blocks.InsertBefore(flowDoc.Blocks.FirstBlock, new Paragraph(new LineBreak()));
// Insert another paragraph at the beginning of the document.
flowDoc.Blocks.InsertBefore(flowDoc.Blocks.FirstBlock, new Paragraph(new Run(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ void ListItemsProp()
listx.ListItems.Add(new ListItem(new Paragraph(new Run("A bit of text content..."))));
listx.ListItems.Add(new ListItem(new Paragraph(new Run("A bit more text content..."))));

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ void InlinesProp()
spanx.Inlines.Add(new Run("A bit more text content..."));
// </Snippet_SpanInlinesAdd>

// Insert a content inline at the begining of the Span.
// Insert a content inline at the beginning of the Span.
// <Snippet_SpanInlinesInsert>
Run runx = new Run("Text to insert...");
spanx.Inlines.InsertBefore(spanx.Inlines.FirstInline, runx);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Namespace FlowDocumentSnippets
flowDoc.Blocks.Add(New Paragraph(New Run("Text to append...")))
' </Snippet_FlowDocumentBlocksAdd>

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

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

' Insert an initial paragraph at the beginning of the empty FlowDocument.
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.")))
' Insert a line-break at the beginnign of the document, before the previously inserted paragraph.
' Insert a line-break at the beginning of the document, before the previously inserted paragraph.
flowDocStart.Blocks.InsertBefore(flowDocStart.Blocks.FirstBlock, New Paragraph(New LineBreak()))
' Insert another paragraph at the beginning of the document.
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.")))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Namespace ListSnippets
listx.ListItems.Add(New ListItem(New Paragraph(New Run("A bit of text content..."))))
listx.ListItems.Add(New ListItem(New Paragraph(New Run("A bit more text content..."))))

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Namespace SpanSnippets
spanx.Inlines.Add(New Run("A bit more text content..."))
' </Snippet_SpanInlinesAdd>

' Insert a content inline at the begining of the Span.
' Insert a content inline at the beginning of the Span.
' <Snippet_SpanInlinesInsert>
Dim runx As New Run("Text to insert...")
spanx.Inlines.InsertBefore(spanx.Inlines.FirstInline, runx)
Expand Down