From bcfabc3556f244107c4cb2592b86cafebabc9e96 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 31 Oct 2023 08:36:09 +1100 Subject: [PATCH] Fix typo, missing word Add a 'by' to fix the grammar in sentence. --- bitcoin/src/crypto/ecdsa.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin/src/crypto/ecdsa.rs b/bitcoin/src/crypto/ecdsa.rs index e982e522..167afcb6 100644 --- a/bitcoin/src/crypto/ecdsa.rs +++ b/bitcoin/src/crypto/ecdsa.rs @@ -2,7 +2,7 @@ //! ECDSA Bitcoin signatures. //! -//! This module provides ECDSA signatures used Bitcoin that can be roundtrip (de)serialized. +//! This module provides ECDSA signatures used by Bitcoin that can be roundtrip (de)serialized. use core::str::FromStr; use core::{fmt, iter};