From d0adcb9c928c313280a2541c3a95cec74afe8e60 Mon Sep 17 00:00:00 2001 From: Przemyslaw Klys Date: Thu, 5 Dec 2024 15:26:30 +0100 Subject: [PATCH] Fix formatting by adding a space after the comma in the output table --- Examples/Example.DetectUsedLibraries.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/Example.DetectUsedLibraries.ps1 b/Examples/Example.DetectUsedLibraries.ps1 index c9b31cb..6567145 100644 --- a/Examples/Example.DetectUsedLibraries.ps1 +++ b/Examples/Example.DetectUsedLibraries.ps1 @@ -1 +1 @@ -[appdomain]::currentdomain.getassemblies() | Sort-Object -Property fullname | Format-Table Fullname,Name,Location -AutoSize \ No newline at end of file +[appdomain]::currentdomain.getassemblies() | Sort-Object -Property fullname | Format-Table Fullname, Name, Location -AutoSize \ No newline at end of file