Skip to content

Commit 3ed1abf

Browse files
authored
Fix Path parameter default value in Example05.ps1
1 parent 907aa7d commit 3ed1abf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Examples/Example05.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
[CmdletBinding()]
1111
param (
12-
[System.IO.DirectoryInfo] $Path = Get-Location,
12+
[System.IO.DirectoryInfo] $Path = (Get-Location).Path,
1313
[string] $Format = 'png'
1414
)
1515

0 commit comments

Comments
 (0)