Skip to content

Commit

Permalink
Fix a typo in about_Type_Conversion.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvs committed Dec 17, 2024
1 parent 413e619 commit c437c36
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c437c36

Please sign in to comment.