diff --git a/server/refreshhandlers.go b/server/refreshhandlers.go
index 2bec0b3059365197a9d6bf1d506e896adf749035..d8c912c9b141e4aef0f0f43515826cb0093c958f 100644
--- a/server/refreshhandlers.go
+++ b/server/refreshhandlers.go
@@ -76,7 +76,7 @@ func (s *Server) getRefreshTokenFromStorage(clientID string, token *internal.Ref
 
 	if refresh.ClientID != clientID {
 		s.logger.Errorf("client %s trying to claim token for client %s", clientID, refresh.ClientID)
-		// According to https://datatracker.ietf.org/doc/html/rfc6749#section-5.2 Dex should response with the
+		// According to https://datatracker.ietf.org/doc/html/rfc6749#section-5.2 Dex should respond with an
 		//  invalid grant error if token has already been claimed by another client.
 		return nil, &refreshError{msg: errInvalidGrant, desc: invalidErr.desc, code: http.StatusBadRequest}
 	}