Skip to content

Commit

Permalink
fix: disable doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
LoricAndre committed Nov 8, 2024
1 parent 1972bf6 commit c321066
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions skim/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ edition = "2018"
[lib]
name = "skim"
path = "src/lib.rs"
doctest = false

[[bin]]
name = "sk"
Expand Down
4 changes: 2 additions & 2 deletions skim/src/bin/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ fn main() {
} else {
std::process::exit(2)
}
},
ArgError(e) => e.exit()
}
ArgError(e) => e.exit(),
}
}
}
Expand Down

0 comments on commit c321066

Please sign in to comment.