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/commit_encoding_enum.rb')
-rw-r--r--app/graphql/types/commit_encoding_enum.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/commit_encoding_enum.rb b/app/graphql/types/commit_encoding_enum.rb
index 0ea89b82db7..c51c1e864fb 100644
--- a/app/graphql/types/commit_encoding_enum.rb
+++ b/app/graphql/types/commit_encoding_enum.rb
@@ -4,7 +4,7 @@ module Types
class CommitEncodingEnum < BaseEnum
graphql_name 'CommitEncoding'
- value 'TEXT', description: 'Text encoding', value: :text
- value 'BASE64', description: 'Base64 encoding', value: :base64
+ value 'TEXT', description: 'Text encoding.', value: :text
+ value 'BASE64', description: 'Base64 encoding.', value: :base64
end
end