1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-10 22:42:00 +02:00

remove todo comment

This commit is contained in:
Jesse Duffield
2020-08-23 07:35:25 +10:00
parent 23432dd909
commit 95a4ca6f8e

View File

@@ -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 // 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 { 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 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 From string
Reverse bool Reverse bool