From ad0900458fe9daaff1255212dc7abec995d8b7ff Mon Sep 17 00:00:00 2001 From: FishAlchemist <48265002+FishAlchemist@users.noreply.github.com> Date: Fri, 23 Aug 2024 12:22:50 +0800 Subject: [PATCH] Fix to miss string termination in PowerShell commands for shell autocompletion docs. (#6491) ## Summary Missing string termination in PowerShell commands for shell autocompletion docs. Incomplete command: ![image](https://github.com/user-attachments/assets/c96a93a3-f70c-4496-be54-34ab72f01a3f) ## Test Plan Run docs server locally ![image](https://github.com/user-attachments/assets/fe861be4-6e44-441b-b924-ae832a72be16) --- docs/getting-started/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index 5c589086e575..d8478a6255a3 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -120,7 +120,7 @@ To enable shell autocompletion for uv commands, run one of the following: === "Windows" ```powershell - Add-Content -Path $PROFILE -Value '(& uv generate-shell-completion powershell) | Out-String | Invoke-Expression + Add-Content -Path $PROFILE -Value '(& uv generate-shell-completion powershell) | Out-String | Invoke-Expression' ``` Then restart the shell or source the shell config file.