Skip to content

Commit 8f3f81e

Browse files
committed
Fixing incorrect empty string for perl formatter
1 parent c568c54 commit 8f3f81e

File tree

1 file changed

+1
-1
lines changed
  • ide/plugins/perl-format/src/content/formats

1 file changed

+1
-1
lines changed

ide/plugins/perl-format/src/content/formats/perl-rc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ string = function(value) {
3232
value = value.replace(/\n/g, '\\n');
3333
return "'" + value + "'";
3434
} else {
35-
return "'";
35+
return "''";
3636
}
3737
}
3838

0 commit comments

Comments
 (0)