summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/todos/mark_done.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/mutations/todos/mark_done.rb')
-rw-r--r--app/graphql/mutations/todos/mark_done.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/mutations/todos/mark_done.rb b/app/graphql/mutations/todos/mark_done.rb
index 2ae50846108..95144abb040 100644
--- a/app/graphql/mutations/todos/mark_done.rb
+++ b/app/graphql/mutations/todos/mark_done.rb
@@ -10,11 +10,11 @@ module Mutations
argument :id,
::Types::GlobalIDType[::Todo],
required: true,
- description: 'The global ID of the todo to mark as done'
+ description: 'The global ID of the todo to mark as done.'
field :todo, Types::TodoType,
null: false,
- description: 'The requested todo'
+ description: 'The requested todo.'
def resolve(id:)
todo = authorized_find!(id: id)