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/snippets')
-rw-r--r--app/graphql/types/snippets/blob_type.rb2
-rw-r--r--app/graphql/types/snippets/visibility_scopes_enum.rb6
2 files changed, 4 insertions, 4 deletions
diff --git a/app/graphql/types/snippets/blob_type.rb b/app/graphql/types/snippets/blob_type.rb
index d5da271d936..2b9b76a6194 100644
--- a/app/graphql/types/snippets/blob_type.rb
+++ b/app/graphql/types/snippets/blob_type.rb
@@ -17,7 +17,7 @@ module Types
null: true
field :raw_plain_data, GraphQL::Types::String,
- description: 'The raw content of the blob, if the blob is text data.',
+ description: 'Raw content of the blob, if the blob is text data.',
null: true
field :raw_path, GraphQL::Types::String,
diff --git a/app/graphql/types/snippets/visibility_scopes_enum.rb b/app/graphql/types/snippets/visibility_scopes_enum.rb
index ddcc005eaf2..b2c1d5cf06b 100644
--- a/app/graphql/types/snippets/visibility_scopes_enum.rb
+++ b/app/graphql/types/snippets/visibility_scopes_enum.rb
@@ -3,9 +3,9 @@
module Types
module Snippets
class VisibilityScopesEnum < BaseEnum
- value 'private', description: 'The snippet is visible only to the snippet creator.', value: 'are_private'
- value 'internal', description: 'The snippet is visible for any logged in user except external users.', value: 'are_internal'
- value 'public', description: 'The snippet can be accessed without any authentication.', value: 'are_public'
+ value 'private', description: 'Snippet is visible only to the snippet creator.', value: 'are_private'
+ value 'internal', description: 'Snippet is visible for any logged in user except external users.', value: 'are_internal'
+ value 'public', description: 'Snippet can be accessed without any authentication.', value: 'are_public'
end
end
end