mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-13 22:22:31 +00:00
Fix docs
This commit is contained in:
parent
60e1579bb2
commit
f7bb543f36
3 changed files with 3 additions and 3 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -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
|
||||||
|
|
|
@ -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),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue