Fix typo in commit.rs (#2150)

This commit is contained in:
ZingyAwesome 2024-03-24 22:14:07 +00:00 committed by GitHub
parent 3342544dfb
commit ef6abbba0f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -126,7 +126,7 @@ pub fn commit(repo_path: &RepoPath, msg: &str) -> Result<CommitId> {
// manually advance to the new commit ID
// repo.commit does that on its own, repo.commit_signed does not
// if there is no head, read default branch or defaul to "master"
// if there is no head, read default branch or default to "master"
if let Ok(mut head) = repo.head() {
head.set_target(commit_id, msg)?;
} else {