From dc626ba79482fcccb929e07a897874472b58ae05 Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Sun, 28 Jul 2024 17:25:02 -0400 Subject: [PATCH] style: add empty lines and change capitalization --- tools/make/lib/git/Makefile | 1 + tools/make/lib/git/notes.mk | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/make/lib/git/Makefile b/tools/make/lib/git/Makefile index edfc20a3f0c..5902a43903e 100644 --- a/tools/make/lib/git/Makefile +++ b/tools/make/lib/git/Makefile @@ -22,6 +22,7 @@ include $(TOOLS_MAKE_LIB_DIR)/git/commitizen.mk include $(TOOLS_MAKE_LIB_DIR)/git/notes.mk + # RULES # #/ diff --git a/tools/make/lib/git/notes.mk b/tools/make/lib/git/notes.mk index 2caec8d1da3..db7c1011594 100644 --- a/tools/make/lib/git/notes.mk +++ b/tools/make/lib/git/notes.mk @@ -21,6 +21,7 @@ # Define the directory containing git notes: GIT_NOTES_DIR ?= $(ROOT_DIR)/docs/git-notes + # RULES # #/ @@ -28,13 +29,13 @@ GIT_NOTES_DIR ?= $(ROOT_DIR)/docs/git-notes # # ## Notes # -# - This rule applies git notes where the file name (without the .txt extension) is the git commit hash and the content is the note. +# - This rule applies Git notes where the file name (without the .txt extension) is the Git commit hash and the content is the note. # # @example # make apply-git-notes #/ apply-git-notes: - $(QUIET) echo "Applying git notes..." + $(QUIET) echo "Applying Git notes..." $(QUIET) for note in $(GIT_NOTES_DIR)/*.txt; do \ if [ -f "$$note" ]; then \ commit_hash=$$(basename "$$note" .txt); \