From 6c49e3d22e886b5db419bf7241a2ff5ff605999a Mon Sep 17 00:00:00 2001 From: memojja Date: Mon, 21 Dec 2020 23:28:59 +0300 Subject: [PATCH] readme: code example and the description are provided to be the same --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2f16394..82570b8 100644 --- a/README.md +++ b/README.md @@ -38,8 +38,8 @@ mutations, and schema modifications are presented below. ```java final class TodoQuerySchemaModule extends SchemaModule { @Query("listTodo") - ListenableFuture listTodo(ListTodoRequest request, TodoClient todoClient) { - return todoClient.listTodo(request); + ListenableFuture listTodo(ListTodoRequest request, TodoService todoService) { + return todoService.listTodo(request); } } ```