summaryrefslogtreecommitdiffstats
path: root/modules/repofiles/file.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/repofiles/file.go')
-rw-r--r--modules/repofiles/file.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/repofiles/file.go b/modules/repofiles/file.go
index 801f770e02..abd14b1db8 100644
--- a/modules/repofiles/file.go
+++ b/modules/repofiles/file.go
@@ -80,7 +80,7 @@ func GetFileCommitResponse(repo *models.Repository, commit *git.Commit) (*api.Fi
}
// GetAuthorAndCommitterUsers Gets the author and committer user objects from the IdentityOptions
-func GetAuthorAndCommitterUsers(author, committer *IdentityOptions, doer *models.User) (committerUser, authorUser *models.User) {
+func GetAuthorAndCommitterUsers(author, committer *IdentityOptions, doer *models.User) (authorUser, committerUser *models.User) {
// Committer and author are optional. If they are not the doer (not same email address)
// then we use bogus User objects for them to store their FullName and Email.
// If only one of the two are provided, we set both of them to it.