Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 69b024b

Browse files
committed
changes for code review
1 parent 677371b commit 69b024b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

test/spec/Editor-test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,7 @@ define(function (require, exports, module) {
10791079
checkSoftTab({line: 0, ch: 8}, 1, "moveH", {line: 0, ch: 9});
10801080
});
10811081

1082-
describe("with soft tab preference off", function () {
1082+
describe("with soft tabs preference off", function () {
10831083
beforeEach(function () {
10841084
// Disable soft tabs
10851085
PreferencesManager.set("softTabs", false);
@@ -1089,19 +1089,19 @@ define(function (require, exports, module) {
10891089
PreferencesManager.set("softTabs", true);
10901090
});
10911091

1092-
it("should move left by 1 space if cursor is immediately after 1 indent level worth of spaces at beginning of line and soft tab pref is off", function () {
1092+
it("should move left by 1 space if cursor is immediately after 1 indent level worth of spaces at beginning of line", function () {
10931093
myEditor.document.setText(" content");
10941094
checkSoftTab({line: 0, ch: 4}, -1, "moveH", {line: 0, ch: 3});
10951095
});
1096-
it("should backspace by 1 space if cursor is immediately after 1 indent level worth of spaces at beginning of line and soft tab pref is off", function () {
1096+
it("should backspace by 1 space if cursor is immediately after 1 indent level worth of spaces at beginning of line", function () {
10971097
myEditor.document.setText(" content");
10981098
checkSoftTab({line: 0, ch: 4}, -1, "deleteH", {line: 0, ch: 3}, " content");
10991099
});
1100-
it("should move right by 1 space if cursor is immediately before 1 indent level worth of spaces at beginning of line and soft tab pref is off", function () {
1100+
it("should move right by 1 space if cursor is immediately before 1 indent level worth of spaces at beginning of line", function () {
11011101
myEditor.document.setText(" content");
11021102
checkSoftTab({line: 0, ch: 0}, 1, "moveH", {line: 0, ch: 1});
11031103
});
1104-
it("should delete right by 1 space if cursor is immediately before 1 indent level worth of spaces at beginning of line and soft tab pref is off", function () {
1104+
it("should delete right by 1 space if cursor is immediately before 1 indent level worth of spaces at beginning of line", function () {
11051105
myEditor.document.setText(" content");
11061106
checkSoftTab({line: 0, ch: 0}, 1, "deleteH", {line: 0, ch: 0}, " content");
11071107
});

0 commit comments

Comments
 (0)