Skip to content
This repository was archived by the owner on Apr 2, 2025. It is now read-only.

Commit 354a00d

Browse files
committed
cargo fmt
1 parent ec260f3 commit 354a00d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/cli_helpers.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -144,11 +144,11 @@ named!(get_threshold<&[u8],u64>,
144144
nums: many1!(digit_char) >>
145145
size_tag: alt!(tag!("M") |
146146
tag!("G") |
147-
tag!("k") |
148-
tag!("b") |
149-
tag!("B") |
150-
tag!("K") |
151-
tag!("g") |
147+
tag!("k") |
148+
tag!("b") |
149+
tag!("B") |
150+
tag!("K") |
151+
tag!("g") |
152152
tag!("m")) >>
153153
(to_u64(nums, size_tag))
154154
)

src/walk_parallel/single_threaded.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ pub fn is_project_dir(p: &str, name: &str) -> bool {
8282
parent_path.exists()
8383
}
8484
// "lib" => {
85-
// parent_path.push("../futhark.pkg");
86-
// parent_path.exists()
85+
// parent_path.push("../futhark.pkg");
86+
// parent_path.exists()
8787
// }
8888
"elm-stuff" => {
8989
let mut package_path = PathBuf::from(p);

0 commit comments

Comments
 (0)