Skip to content

Commit d3ac8a2

Browse files
committed
Fixed test comment "delete" to indicate that splice() is being tested.
1 parent 87253a6 commit d3ac8a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

topics/about_arrays.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ test("length", function() {
1717
equals(collection.length, __, 'what is the length of the collection array?');
1818
});
1919

20-
test("delete", function() {
20+
test("splice", function() {
2121
var daysOfWeek = ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'];
2222
var workingWeek = daysOfWeek.splice(__, __);
2323
ok(workingWeek.equalTo([__]), 'what is the value of workingWeek?');

0 commit comments

Comments
 (0)