Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
vmchale committed Feb 24, 2021
1 parent ec260f3 commit 354a00d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions src/cli_helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,11 @@ named!(get_threshold<&[u8],u64>,
nums: many1!(digit_char) >>
size_tag: alt!(tag!("M") |
tag!("G") |
tag!("k") |
tag!("b") |
tag!("B") |
tag!("K") |
tag!("g") |
tag!("k") |
tag!("b") |
tag!("B") |
tag!("K") |
tag!("g") |
tag!("m")) >>
(to_u64(nums, size_tag))
)
Expand Down
4 changes: 2 additions & 2 deletions src/walk_parallel/single_threaded.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ pub fn is_project_dir(p: &str, name: &str) -> bool {
parent_path.exists()
}
// "lib" => {
// parent_path.push("../futhark.pkg");
// parent_path.exists()
// parent_path.push("../futhark.pkg");
// parent_path.exists()
// }
"elm-stuff" => {
let mut package_path = PathBuf::from(p);
Expand Down

0 comments on commit 354a00d

Please sign in to comment.