Skip to content

Commit 1fb50ec

Browse files
committed
fix: spelling & grammar mistakes in Makefile
1 parent 64a6a35 commit 1fb50ec

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

Makefile

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ endif
3737

3838
help:
3939
@echo ""
40-
@echo "usage: make COMMAND"
40+
@echo "Usage: make [command]"
4141
@echo ""
4242
@echo "Commands:"
43-
@echo " test Run the test"
44-
@echo " test/list List all the test under the tests directory"
45-
@echo " test/watch Automatically run the test every second"
46-
@echo " env/example Makes a copy of the keys on your .env file"
47-
@echo " pre_commit/install Installs the pre-commit hook"
48-
@echo " pre_commit/run Function that will be called when the pre-commit runs"
43+
@echo " test Run the tests"
44+
@echo " test/list List all tests under the tests directory"
45+
@echo " test/watch Automatically run tests every second"
46+
@echo " env/example Copy variables without the values from .env into .env.example"
47+
@echo " pre_commit/install Install the pre-commit hook"
48+
@echo " pre_commit/run Function that will be called when the pre-commit hook runs"
4949
@echo " sa Run shellcheck static analysis tool"
5050
@echo " lint Run editorconfig linter tool"
5151

@@ -68,25 +68,25 @@ test/watch: $(TEST_SCRIPTS)
6868
@fswatch -m poll_monitor -or $(SRC_SCRIPTS_DIR) $(TEST_SCRIPTS_DIR) .env Makefile | xargs -n1 ./bashunit $(TEST_SCRIPTS)
6969

7070
env/example:
71-
@echo "Copy the .env into the .env.example file without the values"
71+
@echo "Copying variables without the values from .env into .env.example"
7272
@sed 's/=.*/=/' .env > .env.example
7373

7474
pre_commit/install:
75-
@echo "Installing pre-commit hooks"
75+
@echo "Installing pre-commit hook"
7676
cp $(PRE_COMMIT_SCRIPTS_FILE) $(GIT_DIR)/hooks/
7777

7878
pre_commit/run: test sa lint env/example
7979

8080
sa:
8181
ifndef STATIC_ANALYSIS_CHECKER
82-
@printf "\e[1m\e[31m%s\e[0m\n" "Shellcheck not installed: Static analisys not preformed!" && exit 1
82+
@printf "\e[1m\e[31m%s\e[0m\n" "Shellcheck not installed: Static analysis not performed!" && exit 1
8383
else
8484
@shellcheck ./**/*.sh -C && printf "\e[1m\e[32m%s\e[0m\n" "ShellCheck: OK!"
8585
endif
8686

8787
lint:
8888
ifndef LINTER_CHECKER
89-
@printf "\e[1m\e[31m%s\e[0m\n" "Editorconfig not installed: Lint not preformed!" && exit 1
89+
@printf "\e[1m\e[31m%s\e[0m\n" "Editorconfig not installed: Lint not performed!" && exit 1
9090
else
9191
@ec -config .editorconfig && printf "\e[1m\e[32m%s\e[0m\n" "editorconfig-check: OK!"
9292
endif

0 commit comments

Comments
 (0)