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/snippet_type.rb')
-rw-r--r--app/graphql/types/snippet_type.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/snippet_type.rb b/app/graphql/types/snippet_type.rb
index c345aea08bd..7b96cc34941 100644
--- a/app/graphql/types/snippet_type.rb
+++ b/app/graphql/types/snippet_type.rb
@@ -22,7 +22,7 @@ module Types
null: false
field :project, Types::ProjectType,
- description: 'The project the snippet is associated with.',
+ description: 'Project the snippet is associated with.',
null: true,
authorize: :read_project
@@ -30,7 +30,7 @@ module Types
# when the admin setting restricted visibility
# level is set to public
field :author, Types::UserType,
- description: 'The owner of the snippet.',
+ description: 'Owner of the snippet.',
null: true
field :file_name, GraphQL::Types::String,