summaryrefslogtreecommitdiffstats
path: root/src/project/git.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/project/git.rs')
-rw-r--r--src/project/git.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/project/git.rs b/src/project/git.rs
index efe4ade..759f632 100644
--- a/src/project/git.rs
+++ b/src/project/git.rs
@@ -12,7 +12,7 @@ pub struct GitMatcher;
impl ProjectParser for GitMatcher {
#[tracing::instrument]
- fn parse_project(&self, path_buf: PathBuf) -> Option<super::ProjectItem> {
+ fn parse(&self, path_buf: PathBuf) -> Option<super::ProjectItem> {
match GitProject::new(path_buf) {
Ok(g) => Some(Box::new(g)),
Err(err) => {