Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
f-PLT committed May 15, 2024
1 parent 60441ab commit 2f34d15
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .make/base.make
Original file line number Diff line number Diff line change
Expand Up @@ -316,11 +316,11 @@ bump-major: ## Bump application major version <X.0.0>
$(BUMP_TOOL) $(BUMP_ARGS) bump major

.PHONY: bump-minor
bump-minor: ## Bump application major version <0.X.0>
bump-minor: ## Bump application minor version <0.X.0>
$(BUMP_TOOL) $(BUMP_ARGS) bump minor

.PHONY: bump-patch
bump-patch: ## Bump application major version <0.0.X>
bump-patch: ## Bump application patch version <0.0.X>
$(BUMP_TOOL) $(BUMP_ARGS) bump patch

## -- Docker targets ------------------------------------------------------------------------------------------------ ##
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

## Adding dependencies

Please make sure do add dependencies using `Poetry`, so the project environment
is kept up to date and functional to other users.
Please make sure to add dependencies using `Poetry`, so the project environment
is kept up to date and functional for other users.

To add a new dependency:

Expand Down
2 changes: 1 addition & 1 deletion Makefile.private.example
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ DOCKER_COMPOSE := docker compose
# a 'true' value will automatically install/remove without asking beforehand.
AUTO_INSTALL := false

## -- Private targets -------------------------------------------------------------------------------------------------##
## -- Private targets ------------------------------------------------------------------------------------------------##

2 changes: 1 addition & 1 deletion Makefile.targets
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is for custom makefile targets at the project level.
# They are meant to be share by the whole project team.

## -- Project targets ------------------------------------------------------------------------------------------------ ##
## -- Project targets ----------------------------------------------------------------------------------------------- ##

.PHONY: custom-target-example
custom-target-example: ## Example custom target
Expand Down

0 comments on commit 2f34d15

Please sign in to comment.