Skip to content

Commit

Permalink
fix: two error messages had typos (#2005)
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldelucia authored Jul 25, 2024
1 parent 429c009 commit ca7f2e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/rs-drive/src/error/document.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ pub enum DocumentError {
#[error("invalid contract identifier size error")]
InvalidContractIdSize(),
/// Error
#[error("contact with specified identifier is not found")]
#[error("contract with specified identifier is not found")]
DataContractNotFound,
}
2 changes: 1 addition & 1 deletion packages/rs-drive/src/error/identity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ pub enum IdentityError {
IdentityKeyBoundsError(&'static str),

/// Identity Key Data Contract Not Found
#[error("contact with specified identifier is not found for identity key data contract")]
#[error("contract with specified identifier is not found for identity key data contract")]
IdentityKeyDataContractNotFound,
}

0 comments on commit ca7f2e0

Please sign in to comment.