Skip to content

Commit

Permalink
Make clippy naming expectations happy
Browse files Browse the repository at this point in the history
  • Loading branch information
kellerkindt committed Jan 20, 2024
1 parent 3630ab5 commit 88a43c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/converter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub enum Error {
ProtobufGenerator(asn1rs_model::generate::protobuf::Error),
Model(asn1rs_model::parse::Error),
Io(std::io::Error),
ResolveError(asn1rs_model::resolve::Error),
ResolveFailure(asn1rs_model::resolve::Error),
}

#[cfg(feature = "protobuf")]
Expand All @@ -37,7 +37,7 @@ impl From<std::io::Error> for Error {

impl From<asn1rs_model::resolve::Error> for Error {
fn from(e: asn1rs_model::resolve::Error) -> Self {
Error::ResolveError(e)
Error::ResolveFailure(e)
}
}

Expand Down

0 comments on commit 88a43c8

Please sign in to comment.