Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Replaced string concatenations with template literals.
  • Loading branch information
PierluigiIannarelli committed Oct 7, 2017
commit 45b8f7244d6e81d59e162bbe18f2d8d7c7adc059
3 changes: 2 additions & 1 deletion tools/license2rtf.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,8 @@ function RtfGenerator() {
if (!lic)
rtf += '\\b';
if (li)
rtf += ` ${li}\\tab ${lines.map(rtfEscape).join('\\line ')}`;
rtf += ` ${li}\\tab`;
rtf += ` ${lines.map(rtfEscape).join('\\line ')}`;
if (!lic)
rtf += '\\b0';
rtf += '\\par\n';
Expand Down