Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
brianary committed Jan 19, 2024
1 parent 1cf8ab7 commit 170ca12
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Get-UnicodeName.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Process
$hex = '{0:X4}' -f $_.Value
$cc.ContainsKey($hex) ? $cc[$hex] : $_.Name
}} |
Export-Csv "$basename.txt" -Delimiter '='
Export-Csv "$basename.txt" -Delimiter '=' -UseQuotes AsNeeded
Write-Information 'Updated.'
return
}
Expand Down
6 changes: 3 additions & 3 deletions Save-PodcastEpisodes.ps1
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<#
.SYNOPSIS
Saves enclosures from a podcast feed.
Downloads enclosures from a podcast feed.
.LINK
Save-WebRequest.ps1
.EXAMPLE
Save-PodcastEpisodes.ps1 https://www.youlooknicetoday.com/rss -UseTitle
Saves podcast episodes to the current directory.
Downloads podcast episodes to the current directory.
#>

#Requires -Version 3
Expand All @@ -25,7 +25,7 @@ Saves podcast episodes to the current directory.
[int] $Last,
# Use episode titles for filenames.
[switch] $UseTitle,
# Saves the episodes into a folder with the podcast name.
# Downloads the episodes into a folder with the podcast name.
[switch] $CreateFolder
)
Begin
Expand Down

0 comments on commit 170ca12

Please sign in to comment.