diff --git a/bitcoin/src/bip32.rs b/bitcoin/src/bip32.rs index b7659e072..847335b4f 100644 --- a/bitcoin/src/bip32.rs +++ b/bitcoin/src/bip32.rs @@ -672,7 +672,7 @@ impl From for IndexOutOfRangeError { impl fmt::Display for IndexOutOfRangeError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - write!(f, "index {} out of range [0, 2^31 - 1] (do you have an hardened child number, rather than an index?)", self.index) + write!(f, "index {} out of range [0, 2^31 - 1] (do you have a hardened child number, rather than an index?)", self.index) } }