diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-10-22 16:06:34 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-10-22 16:06:34 +0000 |
commit | 5d4f94142b24e56d095e836835a699718291dc17 (patch) | |
tree | c4b98b7d0a23648e3cb61575450cefac4eec5058 /lib | |
parent | accab3c7550cf707fb5e49ef64b6116e79dc639c (diff) | |
download | redmine-5d4f94142b24e56d095e836835a699718291dc17.tar.gz redmine-5d4f94142b24e56d095e836835a699718291dc17.zip |
code cleanup: rubocop: fix Layout/SpaceBeforeComma in lib/redmine/export/pdf.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@18839 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/export/pdf.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb index 2fff976fb..987f2b989 100644 --- a/lib/redmine/export/pdf.rb +++ b/lib/redmine/export/pdf.rb @@ -70,7 +70,7 @@ module Redmine Redmine::WikiFormatting.to_html(Setting.text_formatting, text) end - def RDMCell(w ,h=0, txt='', border=0, ln=0, align='', fill=0, link='') + def RDMCell(w, h=0, txt='', border=0, ln=0, align='', fill=0, link='') cell(w, h, txt, border, ln, align, fill, link) end |