summaryrefslogtreecommitdiff
path: root/app/graphql/types/todo_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/todo_type.rb')
-rw-r--r--app/graphql/types/todo_type.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/todo_type.rb b/app/graphql/types/todo_type.rb
index 24c110ce09b..34ba2c75b5f 100644
--- a/app/graphql/types/todo_type.rb
+++ b/app/graphql/types/todo_type.rb
@@ -14,7 +14,7 @@ module Types
null: false
field :project, Types::ProjectType,
- description: 'The project this to-do item is associated with.',
+ description: 'Project this to-do item is associated with.',
null: true,
authorize: :read_project
@@ -24,7 +24,7 @@ module Types
authorize: :read_group
field :author, Types::UserType,
- description: 'The author of this to-do item.',
+ description: 'Author of this to-do item.',
null: false
field :action, Types::TodoActionEnum,