Don't use double quotes for things that don't need to be translated
This is our convention. The only exceptions are double quotes for words in comments that give them a special meaning (though beware that these quotes are not truly necessary most of the time) and double quotes that need to be a part of the output string.
This commit is contained in:
@ -26,7 +26,7 @@ function BoxPointer(side, sourceActor, binProperties) {
|
||||
BoxPointer.prototype = {
|
||||
_init: function(arrowSide, sourceActor, binProperties) {
|
||||
if (arrowSide != St.Side.TOP)
|
||||
throw new Error("not implemented");
|
||||
throw new Error('Not implemented');
|
||||
this._arrowSide = arrowSide;
|
||||
this._sourceActor = sourceActor;
|
||||
this._arrowOrigin = 0;
|
||||
|
Reference in New Issue
Block a user