Skip to content

Commit 54b21c7

Browse files
committed
fix(Export-MyTranscript): change parameter type from string[] to object[]
1 parent aff1108 commit 54b21c7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Test/include/transcriptHelp.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function Export-MyTranscript {
3232
[CmdletBinding()]
3333
param (
3434
[Parameter(Mandatory, Position = 0)]
35-
[string[]]$transcriptContent
35+
[object[]]$transcriptContent
3636
)
3737

3838
$i = 0..($transcriptContent.Count - 1) | Where-Object { $transcriptContent[$_] -eq "**********************" }

0 commit comments

Comments
 (0)