diff --git a/lib/ace/layer/text.js b/lib/ace/layer/text.js
index 0952577e..8955ddc3 100644
--- a/lib/ace/layer/text.js
+++ b/lib/ace/layer/text.js
@@ -146,8 +146,8 @@ var Text = function(parentEl) {
var tabContent = spaceContent;
}
- this.$tabStrings[" "] = "" + spaceContent + "";
- this.$tabStrings["\t"] = "" + tabContent + "";
+ this.$tabStrings[" "] = "" + spaceContent + "";
+ this.$tabStrings["\t"] = "" + tabContent + "";
}
};
diff --git a/lib/ace/layer/text_test.js b/lib/ace/layer/text_test.js
index 1aa1cae5..57601207 100644
--- a/lib/ace/layer/text_test.js
+++ b/lib/ace/layer/text_test.js
@@ -108,13 +108,13 @@ module.exports = {
]);
this.textLayer.setShowInvisibles(true);
testRender([
- "" + DOT(4) + "" + DOT(2) + "" + EOL,
- "" + TAB(4) + "" + TAB(4) + "f" + EOL,
+ "" + DOT(4) + "" + DOT(2) + "" + EOL,
+ "" + TAB(4) + "" + TAB(4) + "f" + EOL,
]);
this.textLayer.setDisplayIndentGuides(false);
testRender([
- "" + DOT(6) + "" + EOL,
- "" + TAB(4) + "" + TAB(4) + "f" + EOL
+ "" + DOT(6) + "" + EOL,
+ "" + TAB(4) + "" + TAB(4) + "f" + EOL
]);
}
};