Skip to content

Commit fc8c28d

Browse files
Merge pull request #12178 from michaeltlombardi/gh-12177
(GH-12177) Fix `Start-Sleep` example
1 parent fdda215 commit fc8c28d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

reference/5.1/Microsoft.PowerShell.Utility/Start-Sleep.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
external help file: Microsoft.PowerShell.Commands.Utility.dll-Help.xml
33
Locale: en-US
44
Module Name: Microsoft.PowerShell.Utility
5-
ms.date: 01/22/2023
5+
ms.date: 06/25/2025
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/start-sleep?view=powershell-5.1&WT.mc_id=ps-gethelp
77
schema: 2.0.0
88
title: Start-Sleep
@@ -35,12 +35,12 @@ repeating an operation.
3535

3636
## EXAMPLES
3737

38-
### Example 1: Pause execution for 1.5 seconds
38+
### Example 1: Pause execution for 1 second
3939

40-
In this example, the execution of commands pauses for one and one-half seconds.
40+
In this example, the execution of commands pauses for one second.
4141

4242
```powershell
43-
Start-Sleep -Seconds 1.5
43+
Start-Sleep -Seconds 1
4444
```
4545

4646
### Example 2: Pause execution at the command line

0 commit comments

Comments
 (0)