From cfefca6d0ec9b4dd96c184d63aca668a6bf8a9a3 Mon Sep 17 00:00:00 2001
From: Matt Gucci <matt9ucci@gmail.com>
Date: Thu, 11 Jan 2018 19:09:24 +0900
Subject: [PATCH] Fix $PSVersionTable.OS in What's New 6.0

$PSVersionTable.OS is:
x [System.Environment]::OSVersion.VersionString
o [System.Runtime.InteropServices.RuntimeInformation]::OSDescription
---
 .../whats-new/What-s-New-in-PowerShell-Core-60.md               | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/reference/docs-conceptual/whats-new/What-s-New-in-PowerShell-Core-60.md b/reference/docs-conceptual/whats-new/What-s-New-in-PowerShell-Core-60.md
index 81b2d64ff4da..8b2a5edecb44 100644
--- a/reference/docs-conceptual/whats-new/What-s-New-in-PowerShell-Core-60.md
+++ b/reference/docs-conceptual/whats-new/What-s-New-in-PowerShell-Core-60.md
@@ -236,7 +236,7 @@ For more information about PowerShell jobs, see [about_Jobs](https://msdn.micros
   - `PSEdition`: This is set to `Core` on PowerShell Core and `Desktop` on Windows PowerShell
   - `GitCommitId`: This is the Git commit ID of the Git branch or tag where PowerShell was built.
     On released builds, it will likely be the same as `PSVersion`.
-  - `OS`: This is an OS version string returned by `[System.Environment]::OSVersion.VersionString`
+  - `OS`: This is an OS version string returned by `[System.Runtime.InteropServices.RuntimeInformation]::OSDescription`
   - `Platform`: This is returned by `[System.Environment]::OSVersion.Platform`
     It is set to `Win32NT` on Windows, `MacOSX` on macOS, and `Unix` on Linux.
 - Removed the `BuildVersion` property from `$PSVersionTable`.