src/util: fix typo
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Florian Klink 2023-07-14 14:25:40 +03:00
parent b1ca1784a1
commit c855284760
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ pub trait Migrate: Serialize + for<'de> Deserialize<'de> + 'static {
Self::Previous::decode(bytes).map(Self::migrate)
}
/// Encode this type with optionnal version marker
/// Encode this type with optional version marker
fn encode(&self) -> Result<Vec<u8>, rmp_serde::encode::Error> {
let mut wr = Vec::with_capacity(128);
wr.extend_from_slice(Self::VERSION_MARKER);