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/milestone_stats_type.rb')
-rw-r--r--app/graphql/types/milestone_stats_type.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/milestone_stats_type.rb b/app/graphql/types/milestone_stats_type.rb
index ef533af59e7..e313b880e0d 100644
--- a/app/graphql/types/milestone_stats_type.rb
+++ b/app/graphql/types/milestone_stats_type.rb
@@ -8,9 +8,9 @@ module Types
authorize :read_milestone
field :total_issues_count, GraphQL::INT_TYPE, null: true,
- description: 'Total number of issues associated with the milestone'
+ description: 'Total number of issues associated with the milestone.'
field :closed_issues_count, GraphQL::INT_TYPE, null: true,
- description: 'Number of closed issues associated with the milestone'
+ description: 'Number of closed issues associated with the milestone.'
end
end