Skip to content

Commit e579aff

Browse files
committed
TaggedFile: Unignore some doc tests
1 parent 6415c7e commit e579aff

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/file.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -406,10 +406,10 @@ impl TaggedFile {
406406
///
407407
/// # Examples
408408
///
409-
/// ```rust,ignore
409+
/// ```rust,no_run
410410
/// # fn main() -> lofty::Result<()> {
411411
/// # let path = "tests/files/assets/minimal/full_test.mp3";
412-
/// let mut tagged_file = lofty::read_from_path(path, true)?;
412+
/// let mut tagged_file = lofty::read_from_path(path)?;
413413
///
414414
/// // Edit the tags
415415
///
@@ -428,12 +428,12 @@ impl TaggedFile {
428428
///
429429
/// # Examples
430430
///
431-
/// ```rust,ignore
431+
/// ```rust,no_run
432432
/// use std::fs::OpenOptions;
433433
///
434434
/// # fn main() -> lofty::Result<()> {
435435
/// # let path = "tests/files/assets/minimal/full_test.mp3";
436-
/// let mut tagged_file = lofty::read_from_path(path, true)?;
436+
/// let mut tagged_file = lofty::read_from_path(path)?;
437437
///
438438
/// // Edit the tags
439439
///

0 commit comments

Comments
 (0)