What changed, and why it matters
This commit only changes the letter case of a variable name in documentation comments, from uppercase 'T' to lowercase 't'. It is a purely cosmetic documentation edit with no effect on code behavior or security.
No security action needed. This is a trivial documentation style change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch modifies three lines of Rust documentation in units/src/locktime/absolute/mod.rs, replacing the uppercase placeholder ‘T’ with lowercase ‘t’ when referring to median-time-past (MTP) locktime values. No executable code, logic, types, or APIs were changed.
Changed components
units/src/locktime/absolute/mod.rs (documentation only)Inspect captured patch +3 / −3
diff --git a/units/src/locktime/absolute/mod.rs b/units/src/locktime/absolute/mod.rs
index c1065839..214985c3 100644
--- a/units/src/locktime/absolute/mod.rs
+++ b/units/src/locktime/absolute/mod.rs
@@ -213,10 +213,10 @@ impl LockTime {
///
/// # Note
///
- /// If the locktime is set to an MTP `T`, the transaction can be included in a block only if
- /// the MTP of last recent 11 blocks is greater than `T`.
+ /// If the locktime is set to an MTP `t`, the transaction can be included in a block only if
+ /// the MTP of last recent 11 blocks is greater than `t`.
///
- /// It is possible to broadcast the transaction once the MTP is greater than `T`. See BIP-0113.
+ /// It is possible to broadcast the transaction once the MTP is greater than `t`. See BIP-0113.
///
/// [BIP-0113 Median time-past as endpoint for lock-time calculations](https://github.com/bitcoin/bips/blob/master/bip-0113.mediawiki)
///
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.