From 7ffb3967861fb032eaab570a97c7d218a69d51b0 Mon Sep 17 00:00:00 2001 From: Chris Titus Date: Mon, 22 Jun 2026 14:17:57 -0500 Subject: [PATCH] chore: Update generated dev docs (#4736) --- docs/content/dev/features/Fixes/Network.md | 2 +- .../Powershell-Profile-Powershell-7--Only/InstallPSProfile.md | 4 ++-- .../dev/tweaks/z--Advanced-Tweaks---CAUTION/OOSUbutton.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/content/dev/features/Fixes/Network.md b/docs/content/dev/features/Fixes/Network.md index d163a7d3..ef633a43 100644 --- a/docs/content/dev/features/Fixes/Network.md +++ b/docs/content/dev/features/Fixes/Network.md @@ -7,6 +7,6 @@ description: "" function Invoke-WPFFixesNetwork { netsh winsock reset netsh int ip reset - Write-Host "Network Configuration has been Reset Please restart your computer." + Write-Host "Network Configuration has been Reset. Please restart your computer." } ``` diff --git a/docs/content/dev/features/Powershell-Profile-Powershell-7--Only/InstallPSProfile.md b/docs/content/dev/features/Powershell-Profile-Powershell-7--Only/InstallPSProfile.md index d7c0d894..daad5b1d 100644 --- a/docs/content/dev/features/Powershell-Profile-Powershell-7--Only/InstallPSProfile.md +++ b/docs/content/dev/features/Powershell-Profile-Powershell-7--Only/InstallPSProfile.md @@ -6,13 +6,13 @@ description: "" ```powershell {filename="functions/private/Invoke-WinUtilInstallPSProfile.ps1",linenos=inline,linenostart=1} function Invoke-WinUtilInstallPSProfile { if (-not (Get-Command wt)) { - Write-Host "Windows Terminal not found installing..." + Write-Host "Windows Terminal not found. Installing..." Install-WinUtilWinget winget install Microsoft.WindowsTerminal --source winget --silent } if (-not (Get-Command pwsh)) { - Write-Host "Powershell 7 not found installing..." + Write-Host "PowerShell 7 not found. Installing..." Install-WinUtilWinget winget install Microsoft.PowerShell --source winget --silent } diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/OOSUbutton.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/OOSUbutton.md index 80940129..af396e8c 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/OOSUbutton.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/OOSUbutton.md @@ -13,7 +13,7 @@ function Invoke-WPFOOSU { $ProgressPreference = 'Continue' } catch { - Write-Error "Couldn't download O&O ShutUp10. Please make sure you have an active internet connection." + Write-Error "Couldn't download O&O ShutUp10. Please make sure you have an active Internet connection." } } ```