summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/workbook/worksheet/comment.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/axlsx/workbook/worksheet/comment.rb')
-rw-r--r--lib/axlsx/workbook/worksheet/comment.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/axlsx/workbook/worksheet/comment.rb b/lib/axlsx/workbook/worksheet/comment.rb
index 1da779aa..ea8324d0 100644
--- a/lib/axlsx/workbook/worksheet/comment.rb
+++ b/lib/axlsx/workbook/worksheet/comment.rb
@@ -63,15 +63,15 @@ module Axlsx
# @return [String]
def to_xml_string(str = +'')
author = @comments.authors[author_index]
- str << (+'<comment ref="' << ref << '" authorId="' << author_index.to_s << '">')
+ str << '<comment ref="' << ref << '" authorId="' << author_index.to_s << '">'
str << '<text>'
unless author.to_s == ""
str << '<r><rPr><b/><color indexed="81"/></rPr>'
- str << (+"<t>" << ::CGI.escapeHTML(author.to_s) << ":\n</t></r>")
+ str << "<t>" << ::CGI.escapeHTML(author.to_s) << ":\n</t></r>"
end
str << '<r>'
str << '<rPr><color indexed="81"/></rPr>'
- str << (+'<t>' << ::CGI.escapeHTML(text) << '</t></r></text>')
+ str << '<t>' << ::CGI.escapeHTML(text) << '</t></r></text>'
str << '</comment>'
end