Skip to content

Commit c1ba91d

Browse files
author
Ron Petrusha
authored
Addressed Policheck issues, Part 1 (#934)
1 parent e310bb8 commit c1ba91d

File tree

7 files changed

+11
-12
lines changed

7 files changed

+11
-12
lines changed

core/json/world_universities_and_domains.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

machine-learning/tutorials/TransferLearningTF/assets/inputs-train/inception/imagenet.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ image146,Norwich terrier
147147
image147,flat-coated retriever
148148
image148,hog
149149
image149,keeshond
150-
image150,Eskimo dog
150+
image150,American Eskimo dog
151151
image151,Brittany spaniel
152152
image152,standard poodle
153153
image153,Lakeland terrier

machine-learning/tutorials/TransferLearningTF/assets/inputs-train/inception/imagenet_comp_graph_label_strings.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Norwich terrier
147147
flat-coated retriever
148148
hog
149149
keeshond
150-
Eskimo dog
150+
American Eskimo dog
151151
Brittany spaniel
152152
standard poodle
153153
Lakeland terrier

snippets/csharp/VS_Snippets_Wpf/HwCaps/CSharp/Window1.xaml.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ void Window1_StylusButtonDown(object sender, StylusButtonEventArgs e)
3737
// To use Loaded event put Loaded="WindowLoaded" attribute in root element of .xaml file.
3838
// private void WindowLoaded(object sender, EventArgs e) {}
3939

40-
// When user clicks button,
41-
// barf out capabilities into panel
40+
// When user clicks button, display capabilities in panel
4241
private void Button1Click(object sender, RoutedEventArgs e)
4342
{
4443
// Clear the textbox if they clicked once before
@@ -100,7 +99,7 @@ private void Button1Click(object sender, RoutedEventArgs e)
10099

101100
bool gotCurrentTabletDevice = false;
102101

103-
// Barf out list of tablet device names
102+
// Display a list of tablet device names
104103
for (int i = 0; i < numTabletDevices; i++)
105104
{
106105
TabletDevice theTD = myTabletDeviceCollection[i];

snippets/csharp/VS_Snippets_Wpf/StylusSnippets/CSharp/Window1.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ void button1_StylusDown(object sender, StylusDownEventArgs e)
3939
// Notify base class of event
4040
base.OnStylusDown(e);
4141

42-
// Barf out a message that the stylus is down
42+
// Display a message that the stylus is down
4343
textbox0.Text = "Stylus Down";
4444
}
4545

@@ -82,7 +82,7 @@ void button1_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
8282
}
8383

8484
// When user clicks button,
85-
// barf out capabilities into panel
85+
// Display capabilities to panel
8686
private void Button1Click(object sender, RoutedEventArgs e)
8787
{
8888
// Clear the textbox if they clicked once before

snippets/visualbasic/VS_Snippets_Wpf/HwCaps/VisualBasic/Window1.xaml.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Partial Public Class Window1
9191

9292
Dim gotCurrentTabletDevice As Boolean = False
9393

94-
' Barf out list of tablet device names
94+
' Display a list of tablet device names
9595
i = 0
9696

9797
While i < numTabletDevices

snippets/visualbasic/VS_Snippets_Wpf/StylusSnippets/VisualBasic/Window1.xaml.vb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Partial Public Class Window1
3131
' Notify base class of event
3232
MyBase.OnStylusDown(e)
3333

34-
' Barf out a message that the stylus is down
34+
' Display a message that the stylus is down
3535
textbox0.Text = "Stylus Down"
3636
End Sub
3737
Private Sub button1_StylusUp(ByVal sender As Object, ByVal e As StylusEventArgs)
@@ -49,8 +49,8 @@ Partial Public Class Window1
4949

5050
textbox0.Text = ""
5151
End Sub
52-
' When user clicks button,
53-
' barf out capabilities into panel
52+
53+
' When user clicks button, display capabilities in panel
5454

5555
Private Sub Button1Click(ByVal sender As Object, ByVal e As RoutedEventArgs) ' Handles button1.Click
5656
' Clear the textbox if they clicked once before

0 commit comments

Comments
 (0)