From 24ac13a804f7ed6c53bde2196b8f0f840cc8d75e Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 27 Jun 2018 19:35:41 +0200 Subject: [PATCH] Remove periods from haskell doctor warnings It is an Emacs convention not to end errors in punctuation (unless they're multi-line). --- modules/lang/haskell/doctor.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/lang/haskell/doctor.el b/modules/lang/haskell/doctor.el index 91ac803ee..df465bc7b 100644 --- a/modules/lang/haskell/doctor.el +++ b/modules/lang/haskell/doctor.el @@ -3,14 +3,14 @@ (when (featurep! +dante) (unless (executable-find "cabal") - (warn! "Couldn't find cabal, haskell-mode may have issues.")) + (warn! "Couldn't find cabal, haskell-mode may have issues")) (unless (executable-find "hlint") - (warn! "Couldn't find hlint. Flycheck may have issues in haskell-mode."))) + (warn! "Couldn't find hlint. Flycheck may have issues in haskell-mode"))) (when (featurep! +intero) (unless (executable-find "stack") - (warn! "Couldn't find stack. Intero will not work."))) + (warn! "Couldn't find stack. Intero will not work"))) (unless (executable-find "hindent") - (warn! "Couldn't find hindent. hindent-mode won't work.")) + (warn! "Couldn't find hindent. hindent-mode won't work"))