@@ -68,7 +68,7 @@ def validate_branch_name(branch_name: str, allowed_tags: List[str]) -> Tuple[boo
6868REQUIRED FORMAT: <type>/<description>
6969
7070Where <type> must be one of the allowed semantic release tags:
71- { ', ' .join (sorted (allowed_tags ))}
71+ { ", " .join (sorted (allowed_tags ))}
7272
7373EXAMPLES:
7474 ✅ feat/user-authentication
@@ -94,7 +94,7 @@ def validate_branch_name(branch_name: str, allowed_tags: List[str]) -> Tuple[boo
9494REQUIRED FORMAT: <type>/<description>
9595
9696Where <type> must be one of the allowed semantic release tags:
97- { ', ' .join (sorted (allowed_tags ))}
97+ { ", " .join (sorted (allowed_tags ))}
9898
9999EXAMPLES:
100100 ✅ feat/user-authentication
@@ -242,7 +242,7 @@ def validate_commit_message(commit_message: str, allowed_tags: List[str]) -> Tup
242242REQUIRED FORMAT: <type>: <description> or <type>(<scope>): <description>
243243
244244Where <type> must be one of the allowed semantic release tags:
245- { ', ' .join (sorted (allowed_tags ))}
245+ { ", " .join (sorted (allowed_tags ))}
246246
247247EXAMPLES:
248248 ✅ feat: add user authentication
@@ -269,7 +269,7 @@ def validate_commit_message(commit_message: str, allowed_tags: List[str]) -> Tup
269269REQUIRED FORMAT: <type>: <description> or <type>(<scope>): <description>
270270
271271Where <type> must be one of the allowed semantic release tags:
272- { ', ' .join (sorted (allowed_tags ))}
272+ { ", " .join (sorted (allowed_tags ))}
273273
274274EXAMPLES:
275275 ✅ feat: add user authentication
0 commit comments