diff --git a/Data/Abbr/aviation.csv b/Data/Abbr/aviation.csv index 3dc56f72..873b25cf 100644 --- a/Data/Abbr/aviation.csv +++ b/Data/Abbr/aviation.csv @@ -469,8 +469,6 @@ VOLMET,Meteorological Information for Aircraft in Flight VOR,VHF Omni-directional Receiver VORTAC,VOR -TACAN combination VREF,1.3 times the stalling speed of the aircraft in the stated landing configuration and at the prevailing aircraft weight -VRR,Voice Recognition and Response -VRS,Voice Recognition System VS,"Stall speed, defined as the minimum steady flight speed at which the airplane is controllable" VSBY,Visibility VSP,Vertical Speed diff --git a/Data/Abbr/computing.csv b/Data/Abbr/computing.csv index 08bcd2e5..5fa08aae 100644 --- a/Data/Abbr/computing.csv +++ b/Data/Abbr/computing.csv @@ -2775,7 +2775,7 @@ VRM,"Vendor Risk Management, or Voltage Regulator Module" VRM,vendor risk management VRM,voltage regulator module VRML,Virtual Reality Modeling Language -VRR,Voice Recognition and Response +VRR,"Voice Recognition and Response, or Variable Refresh Rate" VRRP,Virtual Router Redundancy Protocol VSA,virtual SAN appliance VSA,Virtual Storage Appliance diff --git a/Scripts/what-is.ps1 b/Scripts/what-is.ps1 index e5414e60..b62f45b7 100755 --- a/Scripts/what-is.ps1 +++ b/Scripts/what-is.ps1 @@ -25,7 +25,7 @@ try { foreach($Row in $Table) { if ($Row.Abbr -eq $abbr) { $Basename = (Get-Item "$File").Basename -Replace "_"," " - "🔎 $($Row.Abbr) may refer to $($Row.Term) in $Basename." + "💡 In $Basename $($Row.Abbr) may refer to $($Row.Term)." $Missing = $false } }