aboutsummaryrefslogtreecommitdiffstats
path: root/src/project/path.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/project/path.rs')
-rw-r--r--src/project/path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/project/path.rs b/src/project/path.rs
index 03bcac6..09eb557 100644
--- a/src/project/path.rs
+++ b/src/project/path.rs
@@ -9,7 +9,7 @@ pub struct PathMatcher(pub String);
impl ProjectParser for PathMatcher {
#[tracing::instrument]
- fn parse_project(&self, path_buf: PathBuf) -> Option<ProjectItem> {
+ fn parse(&self, path_buf: PathBuf) -> Option<ProjectItem> {
if path_buf.join(&self.0).exists() {
Some(Box::new(PathProject::new(path_buf)))
} else {