summaryrefslogtreecommitdiff
path: root/app/graphql/types/current_user_todos.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/current_user_todos.rb')
-rw-r--r--app/graphql/types/current_user_todos.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/current_user_todos.rb b/app/graphql/types/current_user_todos.rb
index e610286c1a9..79a430af1d7 100644
--- a/app/graphql/types/current_user_todos.rb
+++ b/app/graphql/types/current_user_todos.rb
@@ -8,10 +8,10 @@ module Types
field_class Types::BaseField
field :current_user_todos, Types::TodoType.connection_type,
- description: 'Todos for the current user',
+ description: 'To-do items for the current user.',
null: false do
argument :state, Types::TodoStateEnum,
- description: 'State of the todos',
+ description: 'State of the to-do items.',
required: false
end