Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rust-bitcoin/rust-secp256k1
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d4cd52a857faa15de30ba816f6f817005168fc7c
Choose a base ref
..
head repository: rust-bitcoin/rust-secp256k1
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: eced889a5b7beed17b8ce443ae363dea917694cc
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/error.rs
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ use crate::key::error::{
};
use crate::{schnorr, MessageLengthError};

/// Implements `From<E> for $error` for all the specific errors in this crate.
/// Implements `From<E> for $error` for all the errors in this crate.
///
/// Either pass in the variant to use or have a variant `Secp256k1` on `$error`.
#[macro_export]