From 501519f87019090ae3f87cc81f6b118ba1c2c420 Mon Sep 17 00:00:00 2001 From: David Coulter Date: Mon, 16 Jul 2018 08:11:30 -0700 Subject: [PATCH] Fixes #2675 - Missed ref/5.0 change --- reference/5.0/Microsoft.PowerShell.Utility/ConvertFrom-Json.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.