diff --git a/reference/5.0/Microsoft.PowerShell.Utility/ConvertFrom-Json.md b/reference/5.0/Microsoft.PowerShell.Utility/ConvertFrom-Json.md index 22a5bf906f97..b4d7bcf95811 100644 --- a/reference/5.0/Microsoft.PowerShell.Utility/ConvertFrom-Json.md +++ b/reference/5.0/Microsoft.PowerShell.Utility/ConvertFrom-Json.md @@ -86,7 +86,7 @@ You can also use the Invoke-RestMethod cmdlet, which automatically converts JSON ### Example 3: Convert a JSON string to a custom object ```powershell -(Get-Content JsonFile.JSON) -Join '`n' | ConvertFrom-Json +(Get-Content JsonFile.JSON) -Join "`n" | ConvertFrom-Json ``` This example shows how to use the **ConvertFrom-Json** cmdlet to convert a JSON file to a PowerShell custom object.