Skip to content

Commit

Permalink
fixed typo in a few places. (#1192)
Browse files Browse the repository at this point in the history
  • Loading branch information
BladeWDR authored Nov 28, 2023
1 parent 7dfc1a9 commit 5ce9709
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions winutil.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -838,14 +838,14 @@ function Invoke-WinUtilScript {
function Invoke-WinUtilShowExt {
<#
.SYNOPSIS
Disables/Enables Show file Extentions
Disables/Enables Show file Extensions
.PARAMETER Enabled
Indicates whether to enable or disable Show file extentions
#>
Param($Enabled)
Try{
if ($Enabled -eq $false){
Write-Host "Showing file extentions"
Write-Host "Showing file extensions"
$value = 0
}
else {
Expand Down Expand Up @@ -4379,7 +4379,7 @@ $inputXML = '<Window x:Class="WinUtility.MainWindow"
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
<Label Content="Show File Extentions" Style="{StaticResource labelfortweaks}" ToolTip="If enabled then File extensions (e.g., .txt, .jpg) are visible." />
<Label Content="Show File Extensions" Style="{StaticResource labelfortweaks}" ToolTip="If enabled then File extensions (e.g., .txt, .jpg) are visible." />
<CheckBox Name="WPFToggleShowExt" Style="{StaticResource ColorfulToggleSwitchStyle}" Margin="2.5,0"/>
</StackPanel>
Expand Down
2 changes: 1 addition & 1 deletion xaml/inputXML.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@
</StackPanel>

<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
<Label Content="Show File Extentions" Style="{StaticResource labelfortweaks}" ToolTip="If enabled then File extensions (e.g., .txt, .jpg) are visible." />
<Label Content="Show File Extensions" Style="{StaticResource labelfortweaks}" ToolTip="If enabled then File extensions (e.g., .txt, .jpg) are visible." />
<CheckBox Name="WPFToggleShowExt" Style="{StaticResource ColorfulToggleSwitchStyle}" Margin="2.5,0"/>
</StackPanel>

Expand Down

0 comments on commit 5ce9709

Please sign in to comment.