Skip to content

Commit

Permalink
Typos in error message for improper URIs (#644)
Browse files Browse the repository at this point in the history
  • Loading branch information
bb-froggy authored May 20, 2022
1 parent 1f23c4d commit e128075
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ foreach ($found in $foundObjects) { # Walk over each found object
($foundBadFunction -and -not $foundUriFunction) -or
($foundBadFunction.Index -lt $foundUriFunction.Index -and $foundBadFunction)
) {
Write-Error "Function'$($foundBadFunction.Groups['FunctionName'].Value)' found within '$($prop.Name)" -TargetObject $found -ErrorId "URI.Improperly.Constructed"
Write-Error "Function '$($foundBadFunction.Groups['FunctionName'].Value)' found within '$($prop.Name)'" -TargetObject $found -ErrorId "URI.Improperly.Constructed"
}
}
}

0 comments on commit e128075

Please sign in to comment.