diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-18 06:39:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-18 12:39:58 +0100 |
commit | c38bd17657483013ed189eccf8262557e4d0c465 (patch) | |
tree | 698a17278dfd4d34bddc5d996f221f1d6ea75a2d /app/controllers | |
parent | ab7816a4141e88cf7e05ba49638ee95fcc6f71ff (diff) |
Autofix Rubocop Style/TrailingCommaInArguments (#23694)
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/tags_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/tags_controller.rb b/app/controllers/tags_controller.rb index 750e15fa3..4b747c9ad 100644 --- a/app/controllers/tags_controller.rb +++ b/app/controllers/tags_controller.rb @@ -58,7 +58,7 @@ class TagsController < ApplicationController def collection_presenter ActivityPub::CollectionPresenter.new( id: tag_url(@tag), - type: :ordered, + type: :ordered ) end end |