diff --git a/src/cli/commands/fork.rs b/src/cli/commands/fork.rs index 514257a..1d18966 100644 --- a/src/cli/commands/fork.rs +++ b/src/cli/commands/fork.rs @@ -255,7 +255,7 @@ fn execute_init( local_config.parent_config_hash = Some(config_hash); } - // Now clone from the local path into .pakku/parent, this avoids + // Now clone from the local path into .pakku/parent — this avoids // re-downloading objects let parent_path = Path::new(&parent_path_str); diff --git a/src/git/mod.rs b/src/git/mod.rs index a0a1ba6..70ebded 100644 --- a/src/git/mod.rs +++ b/src/git/mod.rs @@ -441,7 +441,7 @@ pub fn ahead_behind>( })?; Ok((ahead, behind)) } else { - // Remote ref missing, count commits reachable from local + // Remote ref missing — count commits reachable from local let ahead_count = count_commits(&repo, local_oid)?; Ok((ahead_count, 0)) }