summaryrefslogtreecommitdiffstats
path: root/pkg/commands/git_structs.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2018-08-13 21:16:21 +1000
committerJesse Duffield <jessedduffield@gmail.com>2018-08-13 21:16:21 +1000
commit9e725ae24e8fcecefec35a65b50476d371653ffb (patch)
tree840df3748f981967a3b9f7c276602832dab360d3 /pkg/commands/git_structs.go
parent97cff656121270e9c790432e28622d92ab7b0f1a (diff)
got this bad boy compiling again
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
}