From c76cc609fe2234fbf94c4e4fd463864392ef6cfc Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 19 May 2021 07:43:14 +0200 Subject: [PATCH] Improve output of what-is.ps1 --- Scripts/what-is.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/what-is.ps1 b/Scripts/what-is.ps1 index ff523d50..17695aa4 100755 --- a/Scripts/what-is.ps1 +++ b/Scripts/what-is.ps1 @@ -15,7 +15,7 @@ try { $Table = import-csv "$PSScriptRoot/../Data/Abbr/Aviation.csv" foreach($Row in $Table) { if ($Row.Abbr -eq $Abbreviation) { - "Aviation: $($Row.Description)" + " → $($Row.Description) (in aviation)" $FoundOne = 1 } } @@ -23,7 +23,7 @@ try { $Table = import-csv "$PSScriptRoot/../Data/Abbr/Misc.csv" foreach($Row in $Table) { if ($Row.Abbr -eq $Abbreviation) { - "Misc: $($Row.Description)" + " → $($Row.Description) (in misc)" $FoundOne = 1 } }