mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-06-29 00:51:35 +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:
@ -14,8 +14,8 @@ import (
|
|||||||
// compatibility. We already did this for Commit.Sha, which was renamed to Hash.
|
// compatibility. We already did this for Commit.Sha, which was renamed to Hash.
|
||||||
|
|
||||||
type Commit struct {
|
type Commit struct {
|
||||||
Hash string // deprecated: use Sha
|
Hash string
|
||||||
Sha string
|
Sha string // deprecated: use Hash
|
||||||
Name string
|
Name string
|
||||||
Status models.CommitStatus
|
Status models.CommitStatus
|
||||||
Action todo.TodoCommand
|
Action todo.TodoCommand
|
||||||
|
Reference in New Issue
Block a user