diff --git a/src/lib.rs b/src/lib.rs index 03f8ea7..5fe2ce4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -56,7 +56,7 @@ pub mod csv; #[cfg_attr(docsrs, doc(cfg(feature = "json")))] #[cfg(feature = "json")] pub mod json; -/// Module containing a Bevy plugin to load assets from `MassagePack` files with custom file extensions. +/// Module containing a Bevy plugin to load assets from `MessagePack` files with custom file extensions. #[cfg_attr(docsrs, doc(cfg(feature = "msgpack")))] #[cfg(feature = "msgpack")] pub mod msgpack; diff --git a/src/msgpack.rs b/src/msgpack.rs index 265162e..7a20d88 100644 --- a/src/msgpack.rs +++ b/src/msgpack.rs @@ -50,7 +50,7 @@ pub enum MsgPackLoaderError { /// An [IO Error](std::io::Error) #[error("Could not read the file: {0}")] Io(#[from] std::io::Error), - /// A [MessagePack Error](rmp_serde::decode::Error) + /// A [`MessagePack` Error](rmp_serde::decode::Error) #[error("Could not parse MessagePack: {0}")] MsgPackError(#[from] rmp_serde::decode::Error), }