From ebf92fcb010d126781d4006fb366f342ba56af79 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 19 Jun 2025 13:01:08 +1000 Subject: [PATCH] Use ASCII in rusdocs Feels unnecessarily fancy, lets just use ASCII. Fix the column width to be below the 100 character conventional width while we are at it. --- units/src/locktime/absolute.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/units/src/locktime/absolute.rs b/units/src/locktime/absolute.rs index f008665fd..8f193f2e3 100644 --- a/units/src/locktime/absolute.rs +++ b/units/src/locktime/absolute.rs @@ -153,7 +153,8 @@ impl MedianTimePast { /// The maximum MTP allowable in a locktime (Sun Feb 07 2106 06:28:15 GMT+0000). pub const MAX: Self = MedianTimePast(u32::MAX); - /// Constructs an [`MedianTimePast`] by computing the median‐time‐past from the last 11 block timestamps + /// Constructs an [`MedianTimePast`] by computing the median-time-past from the last + /// 11 block timestamps. /// /// Because block timestamps are not monotonic, this function internally sorts them; /// it is therefore not important what order they appear in the array; use whatever