From 8cf18db314a7c3dc7d0c3927d448342336f0a2a2 Mon Sep 17 00:00:00 2001 From: Awiteb Date: Tue, 30 Apr 2024 16:11:41 +0300 Subject: [PATCH] chore(cliff): Fix typo in an comment --- cliff.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cliff.toml b/cliff.toml index df52e20..d7abad7 100644 --- a/cliff.toml +++ b/cliff.toml @@ -70,7 +70,7 @@ filter_unconventional = true split_commits = false # regex for preprocessing the commit messages commit_preprocessors = [ - {pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([**#${2}**](/issues/${2}))"}, # replace issue numbers (Note the PR is also an issue in GitHub, so this will also link to PRs) + {pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([**#${2}**](/issues/${2}))"}, # replace issue numbers (Note the PR is also an issue in Forgejo, so this will also link to PRs) {pattern = ' +$', replace = ""}, # Remove trailing whitespace. {pattern = ' +', replace = " "}, # Replace multiple spaces with a single space. ]