Fix typos and small grammar change

This commit is contained in:
MarNicGit 2021-09-09 14:31:24 +02:00
parent beb2e085b4
commit 52ccc3b06c

View file

@ -138,8 +138,8 @@ function Copy-Auto() {
} }
if ( Test-Path -Path "${target}" ) { if ( Test-Path -Path "${target}" ) {
Write-Host "${target} alreay exist." Write-Host "${target} already exists."
Write-Host "Now Backup.." Write-Host "Now making a backup.."
Copy-Auto "${target}" "${target}.bak" Copy-Auto "${target}" "${target}.bak"
Remove-Item "${target}" -Recurse -Force Remove-Item "${target}" -Recurse -Force
Write-Host "" Write-Host ""
@ -162,8 +162,8 @@ function Move-Auto() {
} }
if ( Test-Path -Path "${target}" ) { if ( Test-Path -Path "${target}" ) {
Write-Host "${target} alreay exist." Write-Host "${target} already exists."
Write-Host "Now Backup.." Write-Host "Now making a backup.."
Move-Auto "${target}" "${target}.bak" Move-Auto "${target}" "${target}.bak"
Write-Host "" Write-Host ""
} }