From a28fbcfa180e84e11cda423ec6b9aa1d1db76d73 Mon Sep 17 00:00:00 2001
From: Phil de Joux <philderbeast@gmail.com>
Date: Fri, 27 Dec 2024 12:19:35 -0500
Subject: [PATCH] Avoid unnecessary diffs in make comments

---
 Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index 216cc88c66..7fdcec9f3c 100644
--- a/Makefile
+++ b/Makefile
@@ -55,16 +55,16 @@ style-todo: ## Configured for fourmolu, avoiding GHC parser failures
 	@fourmolu -q $(FORMAT_DIRS_TODO) > /dev/null
 
 .PHONY: style
-style: ## Run the code styler
+style: ## Run the code styler.
 	@fourmolu -q -i $(FORMAT_DIRS)
 
 .PHONY: style-modified
-style-modified: ## Run the code styler on modified files
+style-modified: ## Run the code styler on modified files.
 	@git ls-files --modified $(FORMAT_DIRS) \
 		| grep '.hs$$' | xargs -P $(PROCS) -I {} fourmolu -q -i {}
 
 .PHONY: style-commit
-style-commit: ## Run the code styler on the previous commit
+style-commit: ## Run the code styler on the previous commit.
 	@git diff --name-only HEAD $(COMMIT) -- $(FORMAT_DIRS) \
 		| grep '.hs$$' | xargs -P $(PROCS) -I {} fourmolu -q -i {}
 
-- 
GitLab