This commit is contained in:
Serial 2021-11-26 15:33:28 -05:00
parent 60e1579bb2
commit f7bb543f36
3 changed files with 3 additions and 3 deletions

View file

@ -31,7 +31,7 @@ jobs:
profile: minimal profile: minimal
toolchain: stable toolchain: stable
override: true override: true
- run: cargo doc --all-features - run: cargo doc --all-features --no-deps
- run: cargo test --all-features --doc - run: cargo test --all-features --doc
clippy: clippy:
name: Clippy name: Clippy

View file

@ -80,7 +80,7 @@ pub enum LoftyError {
OggPage(ogg_pager::PageError), OggPage(ogg_pager::PageError),
/// Unable to convert bytes to a String /// Unable to convert bytes to a String
FromUtf8(std::string::FromUtf8Error), FromUtf8(std::string::FromUtf8Error),
/// Represents all cases of `std::io::Error`. /// Represents all cases of [`std::io::Error`].
Io(std::io::Error), Io(std::io::Error),
} }

View file

@ -239,7 +239,7 @@ pub mod id3 {
//! //!
//! Two checks are performed when converting a genre: //! Two checks are performed when converting a genre:
//! //!
//! * [`GENRE`] contains the string //! * [`GENRES`] contains the string
//! * The [`ItemValue`](crate::ItemValue) can be parsed into a `u8` //! * The [`ItemValue`](crate::ItemValue) can be parsed into a `u8`
//! //!
//! ## Track Numbers //! ## Track Numbers