diff --git a/crates/project/src/worktree_store.rs b/crates/project/src/worktree_store.rs index b814e46bd1584cb076a057623b8b66800365876d..1eeeefc40ad09012e5d280c0821052cd6f8db098 100644 --- a/crates/project/src/worktree_store.rs +++ b/crates/project/src/worktree_store.rs @@ -228,7 +228,7 @@ impl WorktreeStore { Task::ready(Err(Arc::new(anyhow!("cannot create worktrees via collab")))) } else { let abs_path = RemotePathBuf::new(abs_path.to_path_buf(), *path_style); - self.create_ssh_worktree(upstream_client.clone(), abs_path, visible, cx) + self.create_remote_worktree(upstream_client.clone(), abs_path, visible, cx) } } WorktreeStoreState::Local { fs } => { @@ -251,7 +251,7 @@ impl WorktreeStore { }) } - fn create_ssh_worktree( + fn create_remote_worktree( &mut self, client: AnyProtoClient, abs_path: RemotePathBuf,