Skip to content

Commit 7e6ee18

Browse files
committed
Replaced spaces with tabs
1 parent 0a44eac commit 7e6ee18

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

topics/about_arrays.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ $(document).ready(function(){
2323
var daysOfWeek = ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'];
2424
var workingWeek = daysOfWeek.splice(__, __);
2525
ok(workingWeek.equalTo([__]), 'what is the value of workingWeek?');
26-
ok(daysOfWeek.equalTo([__]), 'what is the value of daysOfWeek?');
26+
ok(daysOfWeek.equalTo([__]), 'what is the value of daysOfWeek?');
2727
});
2828

2929
test("stack methods", function() {

topics/about_control_structures.js

+15-15
Original file line numberDiff line numberDiff line change
@@ -54,21 +54,21 @@ $(document).ready(function(){
5454
equals(result, __, 'what is the value of result?');
5555
});
5656

57-
test("switch default case", function() {
58-
var result = "Pippin";
59-
switch ("m") {
60-
case "f":
61-
result = "Frodo";
62-
break;
63-
case "s":
64-
result = "Samwise";
65-
break;
66-
default:
67-
result = "Merry";
68-
break;
69-
}
70-
equals(result, __, "what is the value of result?');
71-
});
57+
test("switch default case", function() {
58+
var result = "Pippin";
59+
switch ("m") {
60+
case "f":
61+
result = "Frodo";
62+
break;
63+
case "s":
64+
result = "Samwise";
65+
break;
66+
default:
67+
result = "Merry";
68+
break;
69+
}
70+
equals(result, __, "what is the value of result?');
71+
});
7272

7373
test("null coallescion", function() {
7474
var result = null || "a value";

0 commit comments

Comments
 (0)