From f09438bc6f28af731cbb6487740f1963c077c1f1 Mon Sep 17 00:00:00 2001
From: Markus Fleschutz <markus@fleschutz.de>
Date: Fri, 25 Mar 2022 10:10:09 +0100
Subject: [PATCH] Update turn-volume-down.ps1

---
 Scripts/turn-volume-down.ps1 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Scripts/turn-volume-down.ps1 b/Scripts/turn-volume-down.ps1
index 5439123f..2ef9204d 100755
--- a/Scripts/turn-volume-down.ps1
+++ b/Scripts/turn-volume-down.ps1
@@ -1,8 +1,8 @@
 <#
 .SYNOPSIS
-	Turns the audio volume down
+	Turns the volume down
 .DESCRIPTION
-	This PowerShell script turns the audio volume down (by -10% by default).
+	This PowerShell script turns the audio volume down (-10% by default).
 .PARAMETER percent
 	Specifies the percent number
 .EXAMPLE
@@ -20,7 +20,7 @@ try {
 	for ([int]$i = 0; $i -lt $percent; $i += 2) {
 		$obj.SendKeys([char]174) # each tick is -2%
 	}
-	& "$PSScriptRoot/give-reply.ps1" "$($percent)% less volume"
+	& "$PSScriptRoot/give-reply.ps1" "$($percent)% softer."
 	exit 0 # success
 } catch {
 	"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"