Skip to content

Commit 7764df7

Browse files
authored
Merge pull request #11599 from MicrosoftDocs/main
12/17/2024 PM Publish
2 parents 582c6f1 + 76e7822 commit 7764df7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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

reference/docs-conceptual/whats-new/Migrating-from-Windows-PowerShell-51-to-PowerShell-7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ your investment in PowerShell is protected and your migration to PowerShell 7 is
6464

6565
### Differences in .NET versions
6666

67-
PowerShell 7.2 is built on .NET 6.0. Windows PowerShell 5.1 is built on .NET Framework 4.x. The
67+
PowerShell 7.4 is built on .NET 8.0. Windows PowerShell 5.1 is built on .NET Framework 4.x. The
6868
differences between the .NET versions might affect the behavior of your scripts, especially if you
6969
are calling .NET method directly. For more information,
7070
[Differences between Windows PowerShell 5.1 and PowerShell 7.x][10].

0 commit comments

Comments
 (0)