comment_vote.go: fix logger msg typo erorr->error

Closes https://gitlab.com/commento/commento/merge_requests/124
This commit is contained in:
Dave 2019-11-24 09:41:24 +00:00 committed by Adhityaa Chandrasekar
parent 6cfa9922de
commit e0504a0c88

View File

@ -19,7 +19,7 @@ func commentVote(commenterHex string, commentHex string, direction int) error {
var authorHex string
if err := row.Scan(&authorHex); err != nil {
logger.Errorf("erorr selecting authorHex for vote")
logger.Errorf("error selecting authorHex for vote")
return errorInternal
}