From 14734f3d1629b39e1a843cacc7917d728d1e8af5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Franke?= Date: Mon, 30 Jan 2023 10:49:43 +0100 Subject: [PATCH] Fix comments for exported methods. --- services/graph/pkg/service/v0/educationschools.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/graph/pkg/service/v0/educationschools.go b/services/graph/pkg/service/v0/educationschools.go index acb4be015..164796ad7 100644 --- a/services/graph/pkg/service/v0/educationschools.go +++ b/services/graph/pkg/service/v0/educationschools.go @@ -423,7 +423,7 @@ func (g Graph) DeleteEducationSchoolUser(w http.ResponseWriter, r *http.Request) render.NoContent(w, r) } -// GetEducationSchoolUsers implements the Service interface. +// GetEducationSchoolClasses implements the Service interface. func (g Graph) GetEducationSchoolClasses(w http.ResponseWriter, r *http.Request) { logger := g.logger.SubloggerWithRequestID(r.Context()) logger.Info().Msg("calling get school classes") @@ -458,7 +458,7 @@ func (g Graph) GetEducationSchoolClasses(w http.ResponseWriter, r *http.Request) render.JSON(w, r, classes) } -// PostEducationSchoolUser implements the Service interface. +// PostEducationSchoolClass implements the Service interface. func (g Graph) PostEducationSchoolClass(w http.ResponseWriter, r *http.Request) { logger := g.logger.SubloggerWithRequestID(r.Context()) logger.Info().Msg("Calling post school class")