From c437c368b550fa28dd59461aab3e6e1aee8c16da Mon Sep 17 00:00:00 2001 From: sethvs Date: Tue, 17 Dec 2024 16:38:19 +0300 Subject: [PATCH] Fix a typo in about_Type_Conversion.md --- .../Microsoft.PowerShell.Core/About/about_Type_Conversion.md | 2 +- .../Microsoft.PowerShell.Core/About/about_Type_Conversion.md | 2 +- .../Microsoft.PowerShell.Core/About/about_Type_Conversion.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/5.1/Microsoft.PowerShell.Core/About/about_Type_Conversion.md b/reference/5.1/Microsoft.PowerShell.Core/About/about_Type_Conversion.md index 97bbb933e62..9cb6529b248 100644 --- a/reference/5.1/Microsoft.PowerShell.Core/About/about_Type_Conversion.md +++ b/reference/5.1/Microsoft.PowerShell.Core/About/about_Type_Conversion.md @@ -413,7 +413,7 @@ you cast a **Double** to a **Decimal** type, the result is `9223372036854780000`, which isn't accurate. ```powershell -PS> ([int64]::MaxValue + 1)GetType().Name +PS> ([int64]::MaxValue + 1).GetType().Name Double PS> [decimal]([int64]::MaxValue + 1) 9223372036854780000 diff --git a/reference/7.4/Microsoft.PowerShell.Core/About/about_Type_Conversion.md b/reference/7.4/Microsoft.PowerShell.Core/About/about_Type_Conversion.md index 05717a72318..e02b04d4b02 100644 --- a/reference/7.4/Microsoft.PowerShell.Core/About/about_Type_Conversion.md +++ b/reference/7.4/Microsoft.PowerShell.Core/About/about_Type_Conversion.md @@ -413,7 +413,7 @@ you cast a **Double** to a **Decimal** type, the result is `9223372036854780000`, which isn't accurate. ```powershell -PS> ([int64]::MaxValue + 1)GetType().Name +PS> ([int64]::MaxValue + 1).GetType().Name Double PS> [decimal]([int64]::MaxValue + 1) 9223372036854780000 diff --git a/reference/7.5/Microsoft.PowerShell.Core/About/about_Type_Conversion.md b/reference/7.5/Microsoft.PowerShell.Core/About/about_Type_Conversion.md index 48ce7647fd5..eb7e840e60f 100644 --- a/reference/7.5/Microsoft.PowerShell.Core/About/about_Type_Conversion.md +++ b/reference/7.5/Microsoft.PowerShell.Core/About/about_Type_Conversion.md @@ -413,7 +413,7 @@ you cast a **Double** to a **Decimal** type, the result is `9223372036854780000`, which isn't accurate. ```powershell -PS> ([int64]::MaxValue + 1)GetType().Name +PS> ([int64]::MaxValue + 1).GetType().Name Double PS> [decimal]([int64]::MaxValue + 1) 9223372036854780000