summaryrefslogtreecommitdiff
path: root/app/graphql/types/snippets/blob_action_input_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/snippets/blob_action_input_type.rb')
-rw-r--r--app/graphql/types/snippets/blob_action_input_type.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/graphql/types/snippets/blob_action_input_type.rb b/app/graphql/types/snippets/blob_action_input_type.rb
index ccb6ae3f2c1..c4289375f6b 100644
--- a/app/graphql/types/snippets/blob_action_input_type.rb
+++ b/app/graphql/types/snippets/blob_action_input_type.rb
@@ -7,19 +7,19 @@ module Types
description 'Represents an action to perform over a snippet file'
argument :action, Types::Snippets::BlobActionEnum,
- description: 'Type of input action',
+ description: 'Type of input action.',
required: true
argument :previous_path, GraphQL::STRING_TYPE,
- description: 'Previous path of the snippet file',
+ description: 'Previous path of the snippet file.',
required: false
argument :file_path, GraphQL::STRING_TYPE,
- description: 'Path of the snippet file',
+ description: 'Path of the snippet file.',
required: true
argument :content, GraphQL::STRING_TYPE,
- description: 'Snippet file content',
+ description: 'Snippet file content.',
required: false
end
end