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/diff_stats_type.rb')
-rw-r--r--app/graphql/types/diff_stats_type.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/graphql/types/diff_stats_type.rb b/app/graphql/types/diff_stats_type.rb
index da366fec8c3..a6b7f8e9084 100644
--- a/app/graphql/types/diff_stats_type.rb
+++ b/app/graphql/types/diff_stats_type.rb
@@ -9,11 +9,11 @@ module Types
description 'Changes to a single file'
field :additions, GraphQL::Types::Int, null: false,
- description: 'Number of lines added to this file.'
+ description: 'Number of lines added to this file.'
field :deletions, GraphQL::Types::Int, null: false,
- description: 'Number of lines deleted from this file.'
+ description: 'Number of lines deleted from this file.'
field :path, GraphQL::Types::String, null: false,
- description: 'File path, relative to repository root.'
+ description: 'File path, relative to repository root.'
end
# rubocop: enable Graphql/AuthorizeTypes
end