Skip to content

Commit 45a4ee3

Browse files
authored
Merge pull request #849 from dotnet/master
Update live with current master
2 parents f7bc9cf + b136710 commit 45a4ee3

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

snippets/cpp/VS_Snippets_Winforms/System.Windows.Forms.UserInputWalkthrough/cpp/form1.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,8 @@ namespace UserInputWalkthrough
326326
}
327327
}
328328

329-
// All-purpose method for displaying a line of text in the
330-
// text boxe.
329+
// All-purpose method for displaying a line of text in one of the
330+
// text boxes.
331331
private:
332332
void DisplayLine(String^ line)
333333
{

snippets/csharp/VS_Snippets_Winforms/System.Windows.Forms.UserInputWalkthrough/CS/form1.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -289,8 +289,8 @@ private void CheckAllChildCheckBoxes(Control parent, bool value)
289289
}
290290
}
291291

292-
// All-purpose method for displaying a line of text in the
293-
// text boxe.
292+
// All-purpose method for displaying a line of text in one of the
293+
// text boxes.
294294
private void DisplayLine(string line)
295295
{
296296
TextBoxOutput.AppendText(line);
@@ -696,4 +696,4 @@ private void LinkLabelDrag_GiveFeedback(object sender,
696696
}
697697
}
698698
}
699-
// </Snippet0>
699+
// </Snippet0>

snippets/csharp/framework/migration-guide/versions-installed3.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ private static void Get45PlusFromRegistry()
2525
// Checking the version using >= enables forward compatibility.
2626
string CheckFor45PlusVersion(int releaseKey)
2727
{
28-
if (releaseKey >= 528049)
28+
if (releaseKey >= 528040)
2929
return "4.8 or later";
3030
if (releaseKey >= 461808)
3131
return "4.7.2";

snippets/visualbasic/framework/migration-guide/versions-installed3.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Public Module GetDotNetVersion
1919

2020
' Checking the version using >= will enable forward compatibility.
2121
Private Function CheckFor45PlusVersion(releaseKey As Integer) As String
22-
If releaseKey >= 528049 Then
22+
If releaseKey >= 528040 Then
2323
Return "4.8 or later"
2424
Else If releaseKey >= 461808 Then
2525
Return "4.7.2"

0 commit comments

Comments
 (0)