Skip to content

Commit

Permalink
fix(commit-template.sh): fix perf type
Browse files Browse the repository at this point in the history
  • Loading branch information
ghasemdev committed Feb 5, 2022
1 parent 1293e87 commit 25c1073
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commit-template.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RESET="\033[0m"

# Valid types
TYPES=("feat" "fix" "docs" "style" "refactor"
"pref" "test" "build" "ci" "chore" "revert")
"perf" "test" "build" "ci" "chore" "revert")

NUMBERS=("1" "2" "3" "4" "5" "6" "7" "8" "9" "10" "11")

Expand All @@ -29,7 +29,7 @@ printf "${CYAN}4. style${RESET} - Changes that do notaffect the meaning of \
the code (white-space, formatting, missing semi-colons, etc).\n"
printf "${CYAN}5. refactor${RESET} - A Code change that neither fixes a bug \
nor adds a feature.\n"
printf "${CYAN}6. pref${RESET} - A code change that improves performance.\n"
printf "${CYAN}6. perf${RESET} - A code change that improves performance.\n"
printf "${CYAN}7. test${RESET} - Adding missing tests or correcting existing \
tests.\n"
printf "${CYAN}8. build${RESET} - Changes that effect the build system or \
Expand Down

0 comments on commit 25c1073

Please sign in to comment.