summaryrefslogtreecommitdiff
path: root/app/graphql/types/release_assets_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/release_assets_type.rb')
-rw-r--r--app/graphql/types/release_assets_type.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/graphql/types/release_assets_type.rb b/app/graphql/types/release_assets_type.rb
index d6042bdbc0b..79c132358e0 100644
--- a/app/graphql/types/release_assets_type.rb
+++ b/app/graphql/types/release_assets_type.rb
@@ -12,10 +12,10 @@ module Types
present_using ReleasePresenter
field :count, GraphQL::INT_TYPE, null: true, method: :assets_count,
- description: 'Number of assets of the release'
+ description: 'Number of assets of the release.'
field :links, Types::ReleaseAssetLinkType.connection_type, null: true,
- description: 'Asset links of the release'
+ description: 'Asset links of the release.'
field :sources, Types::ReleaseSourceType.connection_type, null: true,
- description: 'Sources of the release'
+ description: 'Sources of the release.'
end
end