Skip to content

Commit 8d0631f

Browse files
committed
server -> client
1 parent 54ece51 commit 8d0631f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ghcide/exe/Arguments.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ getArguments = execParser opts
3232

3333
arguments :: Parser Arguments
3434
arguments = Arguments
35-
<$> switch (long "lsp" <> help "Start talking to an LSP server")
35+
<$> switch (long "lsp" <> help "Start talking to an LSP client")
3636
<*> optional (strOption $ long "cwd" <> metavar "DIR" <> help "Change to this directory")
3737
<*> switch (long "version" <> help "Show ghcide and GHC versions")
3838
<*> optional (strOption $ long "shake-profiling" <> metavar "DIR" <> help "Dump profiling reports to this directory")
@@ -47,6 +47,6 @@ arguments = Arguments
4747
<|> Typecheck <$> fileCmd )
4848
where
4949
fileCmd = many (argument str (metavar "FILES/DIRS..."))
50-
lspInfo = fullDesc <> progDesc "Start talking to an LSP server"
50+
lspInfo = fullDesc <> progDesc "Start talking to an LSP client"
5151
fileInfo = fullDesc <> progDesc "Used as a test bed to check your IDE will work"
5252
hieInfo = fullDesc <> progDesc "Query .hie files"

0 commit comments

Comments
 (0)