summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2020-08-23 07:35:25 +1000
committerJesse Duffield <jessedduffield@gmail.com>2020-08-23 14:29:18 +1000
commit95a4ca6f8e2163e00932d0a270662d4a139fa6c7 (patch)
treeebf9d5d22add87782a1cedc091142e9c9579a918
parent23432dd90976976004ad9b4c6aca4d2ed8318c37 (diff)
remove todo comment
-rw-r--r--pkg/commands/patch/patch_manager.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/commands/patch/patch_manager.go b/pkg/commands/patch/patch_manager.go
index 3243bb238..29385479b 100644
--- a/pkg/commands/patch/patch_manager.go
+++ b/pkg/commands/patch/patch_manager.go
@@ -31,7 +31,7 @@ type loadFileDiffFunc func(from string, to string, reverse bool, filename string
// PatchManager manages the building of a patch for a commit to be applied to another commit (or the working tree, or removed from the current commit). We also support building patches from things like stashes, for which there is less flexibility
type PatchManager struct {
// To is the commit sha if we're dealing with files of a commit, or a stash ref for a stash
- To string // TODO: rename to 'to'
+ To string
From string
Reverse bool