Skip to content

Commit f52c1f5

Browse files
committed
parser/coin: fix error message
1 parent 1490e53 commit f52c1f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ impl FromStr for CoinType {
9797
"bitcoin" => Ok(CoinType::from(Bitcoin)),
9898
"testnet3" => Ok(CoinType::from(TestNet3)),
9999
n => {
100-
anyhow::bail!("The is no impl for `{}`!", n);
100+
anyhow::bail!("There is no impl for `{}`!", n);
101101
}
102102
}
103103
}

0 commit comments

Comments
 (0)