rename sha to hash 9, case: Sha

This commit is contained in:
pikomonde
2024-04-12 08:33:47 +02:00
committed by Stefan Haller
parent de1c495704
commit 170c4ecb8c
12 changed files with 90 additions and 90 deletions
+3 -3
View File
@@ -230,10 +230,10 @@ type MoveFixupCommitDownInstruction struct {
FixupHash string
}
func NewMoveFixupCommitDownInstruction(originalSha string, fixupSha string) Instruction {
func NewMoveFixupCommitDownInstruction(originalHash string, fixupHash string) Instruction {
return &MoveFixupCommitDownInstruction{
OriginalHash: originalSha,
FixupHash: fixupSha,
OriginalHash: originalHash,
FixupHash: fixupHash,
}
}