summaryrefslogtreecommitdiffstats
path: root/pkg/commands/git_structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/commands/git_structs.go')
-rw-r--r--pkg/commands/git_structs.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/commands/git_structs.go b/pkg/commands/git_structs.go
index 2f7255be1..6b10b18bb 100644
--- a/pkg/commands/git_structs.go
+++ b/pkg/commands/git_structs.go
@@ -30,7 +30,7 @@ type StashEntry struct {
// Conflict : A git conflict with a start middle and end corresponding to line
// numbers in the file where the conflict bars appear
type Conflict struct {
- start int
- middle int
- end int
+ Start int
+ Middle int
+ End int
}