Skip to content

Commit 6688d31

Browse files
authored
Fix a typo in about_Type_Conversion.md (#11597)
1 parent 413e619 commit 6688d31

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

reference/5.1/Microsoft.PowerShell.Core/About/about_Type_Conversion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ you cast a **Double** to a **Decimal** type, the result is
413413
`9223372036854780000`, which isn't accurate.
414414

415415
```powershell
416-
PS> ([int64]::MaxValue + 1)GetType().Name
416+
PS> ([int64]::MaxValue + 1).GetType().Name
417417
Double
418418
PS> [decimal]([int64]::MaxValue + 1)
419419
9223372036854780000

reference/7.4/Microsoft.PowerShell.Core/About/about_Type_Conversion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ you cast a **Double** to a **Decimal** type, the result is
413413
`9223372036854780000`, which isn't accurate.
414414

415415
```powershell
416-
PS> ([int64]::MaxValue + 1)GetType().Name
416+
PS> ([int64]::MaxValue + 1).GetType().Name
417417
Double
418418
PS> [decimal]([int64]::MaxValue + 1)
419419
9223372036854780000

reference/7.5/Microsoft.PowerShell.Core/About/about_Type_Conversion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ you cast a **Double** to a **Decimal** type, the result is
413413
`9223372036854780000`, which isn't accurate.
414414

415415
```powershell
416-
PS> ([int64]::MaxValue + 1)GetType().Name
416+
PS> ([int64]::MaxValue + 1).GetType().Name
417417
Double
418418
PS> [decimal]([int64]::MaxValue + 1)
419419
9223372036854780000

0 commit comments

Comments
 (0)