Skip to content

Commit acb6e4a

Browse files
authored
Apply suggestions from code review
1 parent 099d90a commit acb6e4a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ True
487487
In this example, `$intA` is explicitly typed to contain integers.
488488

489489
```powershell
490-
[int] $intA = 1, 2, 3
490+
[int[]] $intA = 1, 2, 3
491491
$intA.Clear()
492492
$intA
493493
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ True
487487
In this example, `$intA` is explicitly typed to contain integers.
488488

489489
```powershell
490-
[int] $intA = 1, 2, 3
490+
[int[]] $intA = 1, 2, 3
491491
$intA.Clear()
492492
$intA
493493
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ True
487487
In this example, `$intA` is explicitly typed to contain integers.
488488

489489
```powershell
490-
[int] $intA = 1, 2, 3
490+
[int[]] $intA = 1, 2, 3
491491
$intA.Clear()
492492
$intA
493493
```

reference/7.6/Microsoft.PowerShell.Core/About/about_Arrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ True
487487
In this example, `$intA` is explicitly typed to contain integers.
488488

489489
```powershell
490-
[int] $intA = 1, 2, 3
490+
[int[]] $intA = 1, 2, 3
491491
$intA.Clear()
492492
$intA
493493
```

0 commit comments

Comments
 (0)