Skip to content

Commit

Permalink
Move comment in the wrong place
Browse files Browse the repository at this point in the history
  • Loading branch information
lusingander committed Jul 31, 2024
1 parent 057fc62 commit 567db22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/git.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ pub struct Commit {
pub committer_date: DateTime<Local>,
pub subject: String,
pub body: String,
// to preserve order of the original commits from `git log`, we store the commit hashes
pub parent_commit_hashes: Vec<CommitHash>,
pub commit_type: CommitType,
}
Expand Down Expand Up @@ -132,6 +131,7 @@ pub struct Repository {

ref_map: RefMap,
head: Head,
// to preserve order of the original commits from `git log`, we store the commit hashes
commit_hashes: Vec<CommitHash>,
}

Expand Down

0 comments on commit 567db22

Please sign in to comment.