summaryrefslogtreecommitdiff
path: root/app/helpers/tags_helper.rb
diff options
context:
space:
mode:
authorCiro Santilli <ciro.santilli@gmail.com>2014-09-26 00:07:40 +0200
committerCiro Santilli <ciro.santilli@gmail.com>2014-10-03 09:18:46 +0200
commit2e9f5de86896e53e9cf34aef52bbc2ad08019a21 (patch)
tree48c469b4e8a9f4596f978a2602e4d3b5cfbece86 /app/helpers/tags_helper.rb
parenta3d90c5045ae322a013484165cdebcd764dc5d69 (diff)
downloadgitlab-ce-2e9f5de86896e53e9cf34aef52bbc2ad08019a21.tar.gz
Add parenthesis to function def with arguments.
Diffstat (limited to 'app/helpers/tags_helper.rb')
-rw-r--r--app/helpers/tags_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/tags_helper.rb b/app/helpers/tags_helper.rb
index ebed6a83746..ef89bb32c6d 100644
--- a/app/helpers/tags_helper.rb
+++ b/app/helpers/tags_helper.rb
@@ -1,9 +1,9 @@
module TagsHelper
- def tag_path tag
+ def tag_path(tag)
"/tags/#{tag}"
end
- def tag_list project
+ def tag_list(project)
html = ''
project.tag_list.each do |tag|
html += link_to tag, tag_path(tag)