summaryrefslogtreecommitdiff
path: root/src/Command.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Command.hs')
-rw-r--r--src/Command.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Command.hs b/src/Command.hs
index 39ab675..0b1c790 100644
--- a/src/Command.hs
+++ b/src/Command.hs
@@ -119,7 +119,7 @@ getRepo :: RepoName -> CommandExec Repo
getRepo name = do
CommandExec (asks (lookup name . ciOtherRepos)) >>= \case
Just repo -> return repo
- Nothing -> tfail $ "repo `" <> textRepoName name <> "' not declared"
+ Nothing -> tfail $ "repo ‘" <> textRepoName name <> "’ not declared"
getDefaultRepo :: CommandExec Repo
getDefaultRepo = do
@@ -141,7 +141,7 @@ getEvalInput = CommandExec $ do
cmdEvalWith :: (EvalInput -> EvalInput) -> Eval a -> CommandExec a
cmdEvalWith f ev = do
- either (tfail . textEvalError) return =<< liftIO .runEval ev . f =<< getEvalInput
+ either (tfail . textEvalError) return =<< liftIO . runEval ev . f =<< getEvalInput
getOutput :: CommandExec Output
getOutput = CommandExec (asks ciOutput)