Skip to content

Commit dc626ba

Browse files
committed
style: add empty lines and change capitalization
1 parent 71947eb commit dc626ba

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: tools/make/lib/git/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
include $(TOOLS_MAKE_LIB_DIR)/git/commitizen.mk
2323
include $(TOOLS_MAKE_LIB_DIR)/git/notes.mk
2424

25+
2526
# RULES #
2627

2728
#/

Diff for: tools/make/lib/git/notes.mk

+3-2
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,21 @@
2121
# Define the directory containing git notes:
2222
GIT_NOTES_DIR ?= $(ROOT_DIR)/docs/git-notes
2323

24+
2425
# RULES #
2526

2627
#/
2728
# Applies Git notes from the `docs/git-notes` directory.
2829
#
2930
# ## Notes
3031
#
31-
# - This rule applies git notes where the file name (without the .txt extension) is the git commit hash and the content is the note.
32+
# - This rule applies Git notes where the file name (without the .txt extension) is the Git commit hash and the content is the note.
3233
#
3334
# @example
3435
# make apply-git-notes
3536
#/
3637
apply-git-notes:
37-
$(QUIET) echo "Applying git notes..."
38+
$(QUIET) echo "Applying Git notes..."
3839
$(QUIET) for note in $(GIT_NOTES_DIR)/*.txt; do \
3940
if [ -f "$$note" ]; then \
4041
commit_hash=$$(basename "$$note" .txt); \

0 commit comments

Comments
 (0)