Skip to content

Commit 25c1073

Browse files
committed
fix(commit-template.sh): fix perf type
1 parent 1293e87 commit 25c1073

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

commit-template.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RESET="\033[0m"
1515

1616
# Valid types
1717
TYPES=("feat" "fix" "docs" "style" "refactor"
18-
"pref" "test" "build" "ci" "chore" "revert")
18+
"perf" "test" "build" "ci" "chore" "revert")
1919

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

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

0 commit comments

Comments
 (0)