Skip to content

Commit 9f89e35

Browse files
authored
Merge pull request #1813 from nschonni/typo-independent
typo: independend -> independent
2 parents ec77db2 + 0be9eb9 commit 9f89e35

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
boundaries obvious.
5555

5656
The column gap is the space between columns; this FlowDocument will
57-
have a column gap of 20 device-independend pixels. The column rule
57+
have a column gap of 20 device-independent pixels. The column rule
5858
is a vertical line drawn in the column gap, and is used to visually
5959
separate columns; this FlowDocument a Dodger-blue column rule that
6060
is 5 pixels wide.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ void ColumnStuff()
163163
{
164164
// <Snippet_FlowDocumentColumnGap>
165165
FlowDocument flowDoc = new FlowDocument(new Paragraph(new Run("A bit of text content...")));
166-
// Set the desired column gap to 10 device independend pixels.
166+
// Set the desired column gap to 10 device independent pixels.
167167
flowDoc.ColumnGap = 10.0;
168168
// </Snippet_FlowDocumentColumnGap>
169169
}
@@ -248,7 +248,7 @@ void FontStuff()
248248
{
249249
// <Snippet_FlowDocumentFontStuff>
250250
FlowDocument flowDoc = new FlowDocument(new Paragraph(new Run("A bit of text content...")));
251-
// Set the desired column gap to 10 device independend pixels.
251+
// Set the desired column gap to 10 device independent pixels.
252252
flowDoc.FontFamily = new FontFamily("Century Gothic");
253253
flowDoc.FontSize = 12.0;
254254
flowDoc.FontStretch = FontStretches.UltraExpanded;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
boundaries obvious.
5454

5555
The column gap is the space between columns; this FlowDocument will
56-
have a column gap of 20 device-independend pixels. The column rule
56+
have a column gap of 20 device-independent pixels. The column rule
5757
is a vertical line drawn in the column gap, and is used to visually
5858
separate columns; this FlowDocument a Dodger-blue column rule that
5959
is 5 pixels wide.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ Namespace FlowDocumentSnippets
148148
Private Sub ColumnStuff()
149149
' <Snippet_FlowDocumentColumnGap>
150150
Dim flowDocColGap As New FlowDocument(New Paragraph(New Run("A bit of text content...")))
151-
' Set the desired column gap to 10 device independend pixels.
151+
' Set the desired column gap to 10 device independent pixels.
152152
flowDocColGap.ColumnGap = 10.0
153153
' </Snippet_FlowDocumentColumnGap>
154154

@@ -209,7 +209,7 @@ Namespace FlowDocumentSnippets
209209
Private Sub FontStuff()
210210
' <Snippet_FlowDocumentFontStuff>
211211
Dim flowDoc As New FlowDocument(New Paragraph(New Run("A bit of text content...")))
212-
' Set the desired column gap to 10 device independend pixels.
212+
' Set the desired column gap to 10 device independent pixels.
213213
flowDoc.FontFamily = New FontFamily("Century Gothic")
214214
flowDoc.FontSize = 12.0
215215
flowDoc.FontStretch = FontStretches.UltraExpanded

0 commit comments

Comments
 (0)