Skip to content

Commit

Permalink
replaced single auote to double qoute
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadam committed Feb 26, 2014
1 parent b04b0a6 commit 362777c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ide/plugins/perl-format/src/content/formats/perl-rc.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ string = function(value) {
value = value.replace(/\'/g, '\\\'');
value = value.replace(/\r/g, '\\r');
value = value.replace(/\n/g, '\\n');
return '\'' + value + '\'';
return "'" + value + "'";
} else {
return '\'\'';
return "'";
}
}

Expand Down

0 comments on commit 362777c

Please sign in to comment.