diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-04 14:43:50 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-04 14:43:50 +0000 |
commit | db67e2021b2d99616815e666ee9a428d2b5f4cee (patch) | |
tree | 1af7f21f8904b17b9a6ec997a7f15545fd6d3c20 /lib | |
parent | 9172a90ef108cea848014db7dcce8ef79e4103c6 (diff) | |
download | redmine-db67e2021b2d99616815e666ee9a428d2b5f4cee.tar.gz redmine-db67e2021b2d99616815e666ee9a428d2b5f4cee.zip |
add space after comma to lib/redmine/activity.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20248 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/activity.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/activity.rb b/lib/redmine/activity.rb index a76d5f19c..49c1cb957 100644 --- a/lib/redmine/activity.rb +++ b/lib/redmine/activity.rb @@ -24,7 +24,7 @@ module Redmine @@available_event_types = [] @@default_event_types = [] - @@providers = Hash.new {|h,k| h[k]=[] } + @@providers = Hash.new {|h, k| h[k]=[]} class << self def map(&block) |