Skip to content

Commit

Permalink
Fixed return type typo in smallrye grapghQL guide
Browse files Browse the repository at this point in the history
  • Loading branch information
mskacelik committed Feb 3, 2023
1 parent 5205645 commit 9616182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/smallrye-graphql.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ Add the following to our `FilmResource` class:
----
@Query
@Description("Get all characters from a galaxy far far away")
public List<Characters> characters() {
public List<Character> characters() {
return service.getAllCharacters();
}
----
Expand Down

0 comments on commit 9616182

Please sign in to comment.