summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
Diffstat (limited to 'pkg')
-rw-r--r--pkg/commands/working_tree.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/commands/working_tree.go b/pkg/commands/working_tree.go
index 05717cca6..a44caceb5 100644
--- a/pkg/commands/working_tree.go
+++ b/pkg/commands/working_tree.go
@@ -33,7 +33,7 @@ type WorkingTreeOSCommand interface {
func NewWorkingTreeCommands(
common *common.Common,
cmd oscommands.ICmdObjBuilder,
- submodulesCommands *SubmoduleCommands,
+ submoduleCommands *SubmoduleCommands,
osCommand WorkingTreeOSCommand,
fileLoader *loaders.FileLoader,
) *WorkingTreeCommands {
@@ -41,7 +41,7 @@ func NewWorkingTreeCommands(
Common: common,
cmd: cmd,
os: osCommand,
- submodule: submodulesCommands,
+ submodule: submoduleCommands,
fileLoader: fileLoader,
}
}