From fc8c28d59a2e2d206c4936ddb4068378f99c961d Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Wed, 25 Jun 2025 15:00:32 -0500 Subject: [PATCH] Merge pull request #12178 from michaeltlombardi/gh-12177 (GH-12177) Fix `Start-Sleep` example --- reference/5.1/Microsoft.PowerShell.Utility/Start-Sleep.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reference/5.1/Microsoft.PowerShell.Utility/Start-Sleep.md b/reference/5.1/Microsoft.PowerShell.Utility/Start-Sleep.md index 96c6c4393781..a0abfafcb0de 100644 --- a/reference/5.1/Microsoft.PowerShell.Utility/Start-Sleep.md +++ b/reference/5.1/Microsoft.PowerShell.Utility/Start-Sleep.md @@ -2,7 +2,7 @@ external help file: Microsoft.PowerShell.Commands.Utility.dll-Help.xml Locale: en-US Module Name: Microsoft.PowerShell.Utility -ms.date: 01/22/2023 +ms.date: 06/25/2025 online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/start-sleep?view=powershell-5.1&WT.mc_id=ps-gethelp schema: 2.0.0 title: Start-Sleep @@ -35,12 +35,12 @@ repeating an operation. ## EXAMPLES -### Example 1: Pause execution for 1.5 seconds +### Example 1: Pause execution for 1 second -In this example, the execution of commands pauses for one and one-half seconds. +In this example, the execution of commands pauses for one second. ```powershell -Start-Sleep -Seconds 1.5 +Start-Sleep -Seconds 1 ``` ### Example 2: Pause execution at the command line