Skip to content

Commit

Permalink
[ADD] typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nhaquet-w6d committed Nov 30, 2023
1 parent 1510249 commit 59a5895
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ use tracing::error;
///it convert the recevied error in a response
#[derive(Error, Debug)]
pub enum RouterError {
#[error("failed to serialize data")]
#[error("failed to serialize data.")]
Serialisation(#[from] serde_json::Error),
#[error("failed to apply identity patch")]
#[error("failed to apply identity patch.")]
Internal(#[from] anyhow::Error),
#[error("failled to convert to string")]
#[error("failled to convert to string.")]
StrConvert(#[from] ToStrError),
#[error("the request failed")]
#[error("the request failed.")]
Http(#[from] reqwest::Error),
#[error("extract error")]
#[error("extract error.")]
Status(StatusCode),
}

Expand Down

0 comments on commit 59a5895

Please sign in to comment.