mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-12 12:55:47 +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:
parent
a7b0ccf059
commit
9ad50028f8
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue