From 8375fed48e6f986b378be07d1970b87fc03f0e82 Mon Sep 17 00:00:00 2001 From: Bart Joy Date: Mon, 15 Jun 2026 08:26:47 +1200 Subject: [PATCH] Correct example PowerShell -Uri argument name The Getting Started page has sample PowerShell that readers can execute to integrate with Neovim. However, the sample code has a typo, with the hyphen missing for the -Uri argument. I've corrected the typo. This is the error that readers would encounter before this fix: > Invoke-WebRequest -Method 'GET' Uri $DownloadUrl -OutFile $ZipPath; Invoke-WebRequest: A positional parameter cannot be found that accepts argument 'https://github.com/neovim/nvim-lspconfig/archive/refs/heads/master.zip'. --- docs/guide/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/getting_started.md b/docs/guide/getting_started.md index ddfe78f7e..b85018e7a 100644 --- a/docs/guide/getting_started.md +++ b/docs/guide/getting_started.md @@ -45,7 +45,7 @@ Alternatively, you can extract the zip file into the same place: $DownloadUrl = 'https://github.com/neovim/nvim-lspconfig/archive/refs/heads/master.zip'; $ZipPath = "$HOME/AppData/local/nvim/nvim-lspconfig.zip"; $InstallPath = "$HOME/AppData/local/nvim/pack/complete/start/nvim-lspconfig"; -Invoke-WebRequest -Method 'GET' Uri $DownloadUrl -OutFile $ZipPath; +Invoke-WebRequest -Method 'GET' -Uri $DownloadUrl -OutFile $ZipPath; Expand-Archive -Path $ZipPath -DestinationPath $InstallPath; ```