Skip to content

Commit 603a3e1

Browse files
committed
chore: fix typo
1 parent 7d43c51 commit 603a3e1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

crates/algokit_transact/src/error.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ use snafu::Snafu;
1212
/// manipulating, serializing, or deserializing Algorand transactions.
1313
#[derive(Debug, Snafu)]
1414
pub enum AlgoKitTransactError {
15-
#[snafu(display("Error ocurred during encoding: {source}"))]
15+
#[snafu(display("Error occurred during encoding: {source}"))]
1616
EncodingError { source: rmp_serde::encode::Error },
1717

18-
#[snafu(display("Error ocurred during decoding: {source}"))]
18+
#[snafu(display("Error occurred during decoding: {source}"))]
1919
DecodingError { source: rmp_serde::decode::Error },
2020

21-
#[snafu(display("Error ocurred during msgpack encoding: {source}"))]
21+
#[snafu(display("Error occurred during msgpack encoding: {source}"))]
2222
MsgpackEncodingError { source: rmpv::encode::Error },
2323

24-
#[snafu(display("Error ocurred during msgpack decoding: {source}"))]
24+
#[snafu(display("Error occurred during msgpack decoding: {source}"))]
2525
MsgpackDecodingError { source: rmpv::decode::Error },
2626

27-
#[snafu(display("Error ocurred during decoding at path {path}: {source}"))]
27+
#[snafu(display("Error occurred during decoding at path {path}: {source}"))]
2828
DecodingErrorWithPath {
2929
path: String,
3030
source: rmp_serde::decode::Error,

0 commit comments

Comments
 (0)