Skip to content

Commit 219b02d

Browse files
Apply suggestions from code review
Co-authored-by: Mikey Lombardi (He/Him) <[email protected]>
1 parent a313b22 commit 219b02d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ on the local cluster.
6969
### Example 5
7070

7171
```powershell
72-
Get-ClusterResource -Name "Cluster Disk 2" | ForEach-Object -Process {$_.RestartDelay = 600}
72+
Get-ClusterResource -Name "Cluster Disk 2" | ForEach-Object -Process {
73+
$_.RestartDelay = 600
74+
}
7375
```
7476

7577
This example sets the common property `RestartDelay` for the `Cluster Disk 2` resource on the local
@@ -90,7 +92,7 @@ Get-ClusterResource -Name *print-VM1 | Get-VM | Stop-VM -Verbose -Confirm:$false
9092
```
9193

9294
This example enumerates the cluster resources for wildcard characters `*print-VM1` and stops the
93-
corresponding virtual machines without user confirmation.. Verbose mode is turned on for details of
95+
corresponding virtual machines without user confirmation. Verbose mode is turned on for details of
9496
the operation.
9597

9698
## PARAMETERS

docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ ForEach-Object -InputObject $groups -Process { $_ | Move-ClusterVirtualMachineRo
7171

7272
This example performs a live migration of all clustered virtual machines that are currently owned by
7373
the node named node1 to the node named node2. The migration of each virtual machine should complete
74-
before the next migration is startqed. Use this cmdlet before performing maintenance on the
74+
before the next migration is started. Use this cmdlet before performing maintenance on the
7575
specified node.
7676

7777
## PARAMETERS

0 commit comments

Comments
 (0)