diff --git a/api/graphql/connections/connection_template.go b/api/graphql/connections/connection_template.go index 935a0a77ffdbc757bd26608ee2e1a655c4c1283f..037c3da58ffa4b4ca826a76e6927504dff866112 100644 --- a/api/graphql/connections/connection_template.go +++ b/api/graphql/connections/connection_template.go @@ -20,7 +20,7 @@ type EdgeType generic.Type // ConnectionType define the connection type handled by this relay connection type ConnectionType generic.Type -// NodeTypeEdgeMaker define a function that take a NodeType and an offset and +// NameEdgeMaker define a function that take a NodeType and an offset and // create an Edge. type NameEdgeMaker func(value NodeType, offset int) Edge diff --git a/api/graphql/connections/gen_identity.go b/api/graphql/connections/gen_identity.go index 2138b17ec02794b2d7f8314315c225c119b7d06a..28a2b0199914f6a0dba40e4174109d8da6996575 100644 --- a/api/graphql/connections/gen_identity.go +++ b/api/graphql/connections/gen_identity.go @@ -10,7 +10,7 @@ import ( "github.com/MichaelMure/git-bug/api/graphql/models" ) -// ModelsIdentityWrapperEdgeMaker define a function that take a models.IdentityWrapper and an offset and +// IdentityEdgeMaker define a function that take a models.IdentityWrapper and an offset and // create an Edge. type IdentityEdgeMaker func(value models.IdentityWrapper, offset int) Edge diff --git a/api/graphql/connections/gen_lazy_bug.go b/api/graphql/connections/gen_lazy_bug.go index 1dc4692ebd53fcf32d7823069ec23bf23d9e86d3..a1f06a0ede596407cce9de706120d31a85431490 100644 --- a/api/graphql/connections/gen_lazy_bug.go +++ b/api/graphql/connections/gen_lazy_bug.go @@ -11,7 +11,7 @@ import ( "github.com/MichaelMure/git-bug/entity" ) -// EntityIdEdgeMaker define a function that take a entity.Id and an offset and +// LazyBugEdgeMaker define a function that take a entity.Id and an offset and // create an Edge. type LazyBugEdgeMaker func(value entity.Id, offset int) Edge diff --git a/api/graphql/connections/gen_lazy_identity.go b/api/graphql/connections/gen_lazy_identity.go index 4996e2199754881e11e90b1e088b988ef48d0981..64ce5f4bbcbd6cebc977dafca298b1c895ae97fd 100644 --- a/api/graphql/connections/gen_lazy_identity.go +++ b/api/graphql/connections/gen_lazy_identity.go @@ -11,7 +11,7 @@ import ( "github.com/MichaelMure/git-bug/entity" ) -// EntityIdEdgeMaker define a function that take a entity.Id and an offset and +// LazyIdentityEdgeMaker define a function that take a entity.Id and an offset and // create an Edge. type LazyIdentityEdgeMaker func(value entity.Id, offset int) Edge