mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2025-01-18 23:23:53 +00:00
TaggedFile: Unignore some doc tests
This commit is contained in:
parent
6415c7e67c
commit
e579aff672
1 changed files with 4 additions and 4 deletions
|
@ -406,10 +406,10 @@ impl TaggedFile {
|
|||
///
|
||||
/// # Examples
|
||||
///
|
||||
/// ```rust,ignore
|
||||
/// ```rust,no_run
|
||||
/// # fn main() -> lofty::Result<()> {
|
||||
/// # let path = "tests/files/assets/minimal/full_test.mp3";
|
||||
/// let mut tagged_file = lofty::read_from_path(path, true)?;
|
||||
/// let mut tagged_file = lofty::read_from_path(path)?;
|
||||
///
|
||||
/// // Edit the tags
|
||||
///
|
||||
|
@ -428,12 +428,12 @@ impl TaggedFile {
|
|||
///
|
||||
/// # Examples
|
||||
///
|
||||
/// ```rust,ignore
|
||||
/// ```rust,no_run
|
||||
/// use std::fs::OpenOptions;
|
||||
///
|
||||
/// # fn main() -> lofty::Result<()> {
|
||||
/// # let path = "tests/files/assets/minimal/full_test.mp3";
|
||||
/// let mut tagged_file = lofty::read_from_path(path, true)?;
|
||||
/// let mut tagged_file = lofty::read_from_path(path)?;
|
||||
///
|
||||
/// // Edit the tags
|
||||
///
|
||||
|
|
Loading…
Reference in a new issue