Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/range_input_type.rb')
-rw-r--r--app/graphql/types/range_input_type.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/range_input_type.rb b/app/graphql/types/range_input_type.rb
index 766e523a99e..b75c3669fbf 100644
--- a/app/graphql/types/range_input_type.rb
+++ b/app/graphql/types/range_input_type.rb
@@ -9,11 +9,11 @@ module Types
@subtypes[[type, closed]] ||= Class.new(self) do
argument :start, type,
required: closed,
- description: 'The start of the range'
+ description: 'The start of the range.'
argument :end, type,
required: closed,
- description: 'The end of the range'
+ description: 'The end of the range.'
end
end