Skip to content

Commit 0e675e3

Browse files
committed
Minor corrections
1 parent f7f50c3 commit 0e675e3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/CodeSnip/MainWindow.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@
210210
VerticalScrollBarVisibility="Auto" Height="80" IsReadOnly="True"
211211
Text="{Binding SelectedSnippet.Description}" Focusable="False"/>
212212
<!-- Tag label -->
213-
<TextBlock Text="Tag:" Margin="0,10,0,5" Grid.Row="2" />
213+
<TextBlock Text="Tags:" Margin="0,10,0,5" Grid.Row="2" />
214214
<!-- Tag TextBox -->
215215
<TextBox x:Name="txtTag" Grid.Row="3" Text="{Binding SelectedSnippet.Tag}" IsReadOnly="True" Focusable="False"/>
216216
</Grid>

src/CodeSnip/Views/SnippetView/SnippetView.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@
7171
<TextBlock Text="Description:" Margin="0,10,0,0" Grid.Row="2"/>
7272
<TextBox x:Name="txtDescription" VerticalAlignment="Stretch" Grid.Row="3" Margin="0,0,0,10" TextWrapping="Wrap"
7373
Text="{Binding Snippet.Description}"/>
74-
<TextBlock Text="Tag:" Margin="0,10,0,0" Grid.Row="4"/>
75-
<TextBox x:Name="txtTag" Grid.Row="5"
74+
<TextBlock Text="Tags:" Margin="0,10,0,0" Grid.Row="4"/>
75+
<TextBox x:Name="txtTag" Grid.Row="5" ToolTip="Tags can be separated by space, period, comma, colon, semicolon, hyphen"
7676
Text="{Binding Snippet.Tag}"/>
7777
</Grid>
7878
<!-- Blok 3 -->

0 commit comments

Comments
 (0)