Skip to content

Commit e66c2ef

Browse files
committed
Fixed some typos in the getting started guide.
1 parent 5eaa6b4 commit e66c2ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/guide/getting_started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Getting Started
2-
PowerShell Editor Services project provides a Language Server Protocol (LSP)
2+
The PowerShell Editor Services project provides a Language Server Protocol (LSP)
33
HTTP server that runs outside the editor. The server supplies rich editor
44
functionality like code completion, syntax highlighting, and code annotation.
55
This document will guide you through getting a minimal setup working with
@@ -43,9 +43,9 @@ Alternatively, you can extract the zip file into the same place:
4343
```powershell
4444
$DownloadUrl = 'https://github.com/neovim/nvim-lspconfig/archive/refs/heads/master.zip';
4545
$ZipPath = "$HOME/AppData/local/nvim/nvim-lspconfig.zip";
46-
$InstallPath = "$HOME/AppData/local/nvim/nvim-lspconfig";
46+
$InstallPath = "$HOME/AppData/local/nvim/pack/complete/start/nvim-lspconfig";
4747
Invoke-WebRequest -Method 'GET' Uri $DownloadUrl -OutFile $ZipPath;
48-
Expand-Archive -Path $ZipPath -DestinationPath "$HOME/AppData/local/nvim/pack/complete/start/nvim-lspconfig";
48+
Expand-Archive -Path $ZipPath -DestinationPath $InstallPath;
4949
```
5050

5151
> NOTE: If the corresponding neovim configuration and package directories have

0 commit comments

Comments
 (0)