Skip to content

Commit

Permalink
Merge branch 'main' of github.com:NiklasEi/bevy_common_assets into be…
Browse files Browse the repository at this point in the history
…vy_main
  • Loading branch information
NiklasEi committed Jun 9, 2024
2 parents 03dbeae + b6316a7 commit a1da9cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/msgpack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
}
Expand Down

0 comments on commit a1da9cc

Please sign in to comment.