From e83612a06c9c5eb0e5a31415a59c81da8490dae7 Mon Sep 17 00:00:00 2001 From: Nick Suchecki Date: Sun, 1 May 2022 15:12:39 +0000 Subject: [PATCH] Fix typo in `compile hls --help` subcommand. --- app/ghcup/GHCup/OptParse/Compile.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ghcup/GHCup/OptParse/Compile.hs b/app/ghcup/GHCup/OptParse/Compile.hs index 2308472..a086b04 100644 --- a/app/ghcup/GHCup/OptParse/Compile.hs +++ b/app/ghcup/GHCup/OptParse/Compile.hs @@ -283,7 +283,7 @@ hlsCompileOpts = (short 'g' <> long "git-ref" <> metavar "GIT_REFERENCE" <> help "The git commit/branch/ref to build from" ) <*> - optional (option str (short 'r' <> long "repository" <> metavar "GIT_REPOSITORY" <> help "The git repository to build from (defaults to GHC upstream)" + optional (option str (short 'r' <> long "repository" <> metavar "GIT_REPOSITORY" <> help "The git repository to build from (defaults to HLS upstream)" <> completer (gitFileUri ["https://github.com/haskell/haskell-language-server.git"]) )) )))