From 6e1d494f925aa536bc4de60d7e74c9a1aa59d1d4 Mon Sep 17 00:00:00 2001 From: Brian Lalonde Date: Tue, 9 Apr 2024 14:25:27 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=AC=20Remove=20version=20indicator,=20?= =?UTF-8?q?which=20could=20be=20redundant?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Show-OpenApiInfo.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Show-OpenApiInfo.ps1 b/Show-OpenApiInfo.ps1 index e339fd4..98deb1b 100644 --- a/Show-OpenApiInfo.ps1 +++ b/Show-OpenApiInfo.ps1 @@ -27,7 +27,7 @@ Process { $api = Get-OpenApiInfo.ps1 $Path Write-Host $api.Title -ForegroundColor Green -NoNewline - Write-Host " v$($api.Version) " -ForegroundColor DarkCyan -NoNewline + Write-Host " $($api.Version) " -ForegroundColor DarkCyan -NoNewline if($api.Description) {Write-Host $api.Description -ForegroundColor DarkGreen} Write-Host $api.Source -ForegroundColor Cyan -NoNewline Write-Host " OpenAPI v$($api.OpenApi)" -ForegroundColor DarkCyan