From 03d4a6f1e166a091af24cc0b63078b1b4abfa876 Mon Sep 17 00:00:00 2001 From: rvcas Date: Wed, 5 Oct 2022 21:02:52 -0400 Subject: [PATCH] chore: rename --- crates/cli/src/project.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/cli/src/project.rs b/crates/cli/src/project.rs index d552759e..e85918ce 100644 --- a/crates/cli/src/project.rs +++ b/crates/cli/src/project.rs @@ -127,8 +127,8 @@ fn is_aiken_path(path: &Path, dir: impl AsRef) -> bool { re.is_match( path.strip_prefix(dir) - .expect("is_gleam_path(): strip_prefix") + .expect("is_aiken_path(): strip_prefix") .to_str() - .expect("is_gleam_path(): to_str"), + .expect("is_aiken_path(): to_str"), ) }