summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-11-05 14:09:45 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-11-05 14:09:45 +0000
commit1dfd16beb0d5728e0c67055001ff63e8df40848e (patch)
tree53a0da936aee02696c5ccc0bd8443a73046a45d0 /app
parentd4a59e78a536fc76c9210587a10d8ce6e6d7e56e (diff)
downloadredmine-1dfd16beb0d5728e0c67055001ff63e8df40848e.tar.gz
redmine-1dfd16beb0d5728e0c67055001ff63e8df40848e.zip
cleanup: rubocop: fix Layout/AlignArguments in ApplicationHelper#link_to_project
git-svn-id: http://svn.redmine.org/redmine/trunk@18910 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/helpers/application_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index f17f1a6cc..f75f3e825 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -167,8 +167,8 @@ module ApplicationHelper
h(project.name)
else
link_to project.name,
- project_url(project, {:only_path => true}.merge(options)),
- html_options
+ project_url(project, {:only_path => true}.merge(options)),
+ html_options
end
end