Skip to content

Commit

Permalink
chore: fix broken docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Evalir committed Oct 4, 2023
1 parent 685e058 commit a563eb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/artifact_output/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ pub trait Artifact {
/// Returns the contents of this type as a single tuple of abi, bytecode and deployed bytecode
fn into_parts(self) -> (Option<JsonAbi>, Option<Bytes>, Option<Bytes>);

/// Consumes the type and returns the [Abi]
/// Consumes the type and returns the [JsonAbi]
fn into_abi(self) -> Option<JsonAbi>
where
Self: Sized,
Expand Down Expand Up @@ -525,7 +525,7 @@ pub trait Artifact {
Some(val)
}

/// Returns the reference to the [Abi] if available
/// Returns the reference to the [JsonAbi] if available
fn get_abi(&self) -> Option<Cow<JsonAbi>> {
self.get_contract_bytecode().abi
}
Expand Down

0 comments on commit a563eb0

Please sign in to comment.