Skip to content

Commit

Permalink
fix(coco): fix function is private
Browse files Browse the repository at this point in the history
  • Loading branch information
Eliot00 committed Feb 23, 2021
1 parent 03f2ca9 commit 48c59d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/analysis/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ impl From<&CocoConfig> for Analyst {
}

impl Analyst {
fn analysis(&self, _cli_option: CocoCliOption) {
pub fn analysis(&self, _cli_option: CocoCliOption) {
// todo: add tasks for parallel run analysis tasks for one or more repos
let start = Instant::now();
self.repos.par_iter().for_each(|repo| {
Expand Down

0 comments on commit 48c59d8

Please sign in to comment.