Skip to content

Commit

Permalink
drive-by: Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
aborgna-q committed Jul 22, 2024
1 parent e89aa9c commit 18d4b89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tket2/src/rewrite/ecc_rewriter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,13 +195,13 @@ impl Rewriter for ECCRewriter {
/// Errors that can occur when (de)serialising an [`ECCRewriter`].
#[derive(Debug, Error)]
pub enum RewriterSerialisationError {
/// An IO error occured
/// An IO error occurred
#[error("IO error: {0}")]
Io(#[from] io::Error),
/// An error occured during deserialisation
/// An error occurred during deserialisation
#[error("Deserialisation error: {0}")]
Deserialisation(#[from] rmp_serde::decode::Error),
/// An error occured during serialisation
/// An error occurred during serialisation
#[error("Serialisation error: {0}")]
Serialisation(#[from] rmp_serde::encode::Error),
}
Expand Down

0 comments on commit 18d4b89

Please sign in to comment.