docs: fix malformed markdown link references in CHANGELOG.md
What changed, and why it matters
This commit only fixes two broken Markdown link references in the project's CHANGELOG.md file. It removes extra spaces and stray characters from the link syntax so the links render correctly. There are no code changes and no security implications.
No action required. This is a documentation-only formatting fix with no security relevance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies two lines in bitcoin/CHANGELOG.md. One line removes a space between the issue reference and the opening parenthesis of the URL. The other line corrects a malformed link that had duplicated hash characters and an incorrectly concatenated URL. No Rust source code, build scripts, tests, or dependencies were changed.
Changed components
bitcoin/CHANGELOG.mdInspect captured patch +2 / −2
diff --git a/bitcoin/CHANGELOG.md b/bitcoin/CHANGELOG.md
index 0bf76496..1a5fba48 100644
--- a/bitcoin/CHANGELOG.md
+++ b/bitcoin/CHANGELOG.md
@@ -99,13 +99,13 @@ For changes to our dependencies included in this release see:
- Pass keys by value [#2868](https://github.com/rust-bitcoin/rust-bitcoin/pull/2868)
- Clarify the meaning of `Height` & `Time` based locktime [#2858](https://github.com/rust-bitcoin/rust-bitcoin/pull/2858)
- Add API for extracting the inner payload of `RawNetworkMessage` [#2839](https://github.com/rust-bitcoin/rust-bitcoin/pull/2839)
-- Update `bitcoinconsensus` version to `0.106.0+26` [#2833] (https://github.com/rust-bitcoin/rust-bitcoin/pull/2833)
+- Update `bitcoinconsensus` version to `0.106.0+26` [#2833](https://github.com/rust-bitcoin/rust-bitcoin/pull/2833)
- Make `difficulty_float` general to all networks [#2816](https://github.com/rust-bitcoin/rust-bitcoin/pull/2816)
- Add const modifier to `Magic::from_bytes` [#2815](https://github.com/rust-bitcoin/rust-bitcoin/pull/2815)
- Add an `AddressData` type [#2808](https://github.com/rust-bitcoin/rust-bitcoin/pull/2808)
- Make `Address:p2sh_from_hash` public [#2795](https://github.com/rust-bitcoin/rust-bitcoin/pull/2795)
- Enable getting the witness program from an address [#2796](https://github.com/rust-bitcoin/rust-bitcoin/pull/2796)
-- Enforce script size limit when hashing scripts [##2794](https://github.com/rust-bitcoin/rust-bitcoin/pull/2794https://github.com/rust-bitcoin/rust-bitcoin/pull/#2794)
+- Enforce script size limit when hashing scripts [#2794](https://github.com/rust-bitcoin/rust-bitcoin/pull/2794)
- Deprecate `to_vec` in favour of `to_bytes` [#2768](https://github.com/rust-bitcoin/rust-bitcoin/pull/2768)
- Flesh out hex unit parsing API [#2765](https://github.com/rust-bitcoin/rust-bitcoin/pull/2765)
- Bench `base58` encoding and remove `SmallVec` to improve perf [#2759](https://github.com/rust-bitcoin/rust-bitcoin/pull/2759)
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.