diff --git a/pyproject-fmt/CHANGELOG.md b/pyproject-fmt/CHANGELOG.md
index 0d2bbcb..75057b2 100644
--- a/pyproject-fmt/CHANGELOG.md
+++ b/pyproject-fmt/CHANGELOG.md
@@ -3,7 +3,7 @@
## 2.4.3 - 2024-10-17
- Fix tomli not present for Python<3.11 by [@gaborbernat](https://github.com/gaborbernat) in
- [#$9](https://github.com/tox-dev/toml-fmt/pull/9)]
+ [#$9](https://github.com/tox-dev/toml-fmt/pull/9)
@@ -16,7 +16,7 @@
## 2.4.1 - 2024-10-17
- Fix release script by [@gaborbernat](https://github.com/gaborbernat) in
- [#$8](https://github.com/tox-dev/toml-fmt/pull/8)]
+ [#$8](https://github.com/tox-dev/toml-fmt/pull/8)
diff --git a/tasks/changelog.py b/tasks/changelog.py
index 4cd8126..c5e57d5 100644
--- a/tasks/changelog.py
+++ b/tasks/changelog.py
@@ -49,7 +49,7 @@ def run() -> None:
at = "tox-dev/toml-fmt"
gh_repo = github.get_repo(at)
for title, pr, by in entries(gh_repo, git_repo, options.pr, options.base):
- suffix = f" in [#${pr}](https://github.com/{at}/pull/{pr})]" if pr else ""
+ suffix = f" in [#${pr}](https://github.com/{at}/pull/{pr})" if pr else ""
logs.append(f"{title} by [@{by}](https://github.com/{by}){suffix}")
if logs: