aboutsummaryrefslogtreecommitdiff
path: root/modules/git/commit.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/git/commit.go')
-rw-r--r--modules/git/commit.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/git/commit.go b/modules/git/commit.go
index d2d373da..4e254dce 100644
--- a/modules/git/commit.go
+++ b/modules/git/commit.go
@@ -88,11 +88,11 @@ func (c *Commit) GetCommitOfRelPath(relPath string) (*Commit, error) {
}
func (c *Commit) GetSubModule(entryname string) (*SubModule, error) {
- moduels, err := c.GetSubModules()
+ modules, err := c.GetSubModules()
if err != nil {
return nil, err
}
- return moduels[entryname], nil
+ return modules[entryname], nil
}
func (c *Commit) GetSubModules() (map[string]*SubModule, error) {