1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-04 22:34:39 +02:00

Fix wrong comment

This was backwards; we renamed Sha to Hash, so Sha is now deprecated, not Hash.
This commit is contained in:
Stefan Haller 2025-02-15 13:55:07 +01:00
parent a7b0ccf059
commit 9ad50028f8

View File

@ -14,8 +14,8 @@ import (
// compatibility. We already did this for Commit.Sha, which was renamed to Hash.
type Commit struct {
Hash string // deprecated: use Sha
Sha string
Hash string
Sha string // deprecated: use Hash
Name string
Status models.CommitStatus
Action todo.TodoCommand