Skip to content

Commit 362777c

Browse files
committed
replaced single auote to double qoute
1 parent b04b0a6 commit 362777c

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ string = function(value) {
3030
value = value.replace(/\'/g, '\\\'');
3131
value = value.replace(/\r/g, '\\r');
3232
value = value.replace(/\n/g, '\\n');
33-
return '\'' + value + '\'';
33+
return "'" + value + "'";
3434
} else {
35-
return '\'\'';
35+
return "'";
3636
}
3737
}
3838

0 commit comments

Comments
 (0)