Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

Commit

Permalink
fixed cargo fmt issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
breuhan committed Apr 23, 2024
1 parent 8d1b900 commit 5b7870c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions src/llite/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,7 @@ where
I: Stream<Token = char>,
I::Error: ParseError<I::Token, I::Range, I::Position>,
{
(
string(LLITE).skip(period()),
target().skip(period()),
)
(string(LLITE).skip(period()), target().skip(period()))
.map(|(_, x)| x)
.message("while parsing llite target_name")
}
Expand Down
2 changes: 1 addition & 1 deletion src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ mod tests {
fn test_valid_fixtures() {
for dir in VALID_FIXTURES.find("*").unwrap() {
match dir {
include_dir::DirEntry::Dir(_) => {},
include_dir::DirEntry::Dir(_) => {}
include_dir::DirEntry::File(file) => {
let name = file.path().to_string_lossy();

Expand Down

0 comments on commit 5b7870c

Please sign in to comment.