From 023e3b7b90583680bbc89b279ea742e351e52ffc Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Mon, 11 Apr 2022 10:37:48 -0700 Subject: [PATCH] git: fix an obsolete comment about a `.jj/` path The path to the file that indicates the last export to git was changed when we added support for multiple workspaces. --- lib/src/git.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/git.rs b/lib/src/git.rs index 8b87e222b..8e41b9654 100644 --- a/lib/src/git.rs +++ b/lib/src/git.rs @@ -209,8 +209,8 @@ pub fn export_changes( /// Reflect changes made in the Jujutsu repo since last export in the underlying /// Git repo. If this is the first export, nothing will be exported. The -/// exported state's operation ID is recorded in the repo (`.jj/ -/// git_export_operation_id`). +/// exported state's operation ID is recorded in the repo +/// (`.jj/repo/git_export_operation_id`). pub fn export_refs( repo: &Arc, git_repo: &git2::Repository,