From f3f344df6098eed930e2e18bc99fb5a466513db3 Mon Sep 17 00:00:00 2001 From: trpdjke Date: Thu, 22 Aug 2024 19:29:40 +0300 Subject: [PATCH] fix misspelling --- internal/service/handlers/daily_question_check.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/service/handlers/daily_question_check.go b/internal/service/handlers/daily_question_check.go index f423d64..ba2c388 100644 --- a/internal/service/handlers/daily_question_check.go +++ b/internal/service/handlers/daily_question_check.go @@ -102,7 +102,7 @@ func CheckDailyQuestion(w http.ResponseWriter, r *http.Request) { Log(r).Infof("Wrong answer for daily question: %v", req.Answer) err = DailyQuestionsQ(r).FilterTodayQuestions(cfg.Timezone).IncrementIncorrectAnswer() if err != nil { - Log(r).WithError(err).Errorf("Error incrementing question answers incorect answered") + Log(r).WithError(err).Errorf("Error incrementing question answers incorrect answered") } return nil }