Skip to content

Commit b3b06d3

Browse files
committed
Fixes to spelling
1 parent 3ceae4c commit b3b06d3

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

topics/about_assignment.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11

22
$(document).ready(function(){
33

4-
module("About Assignment (topics/about_assignments.js)");
4+
module("About Assignment (topics/about_assignment.js)");
55

66
test("local variables", function() {
77
var temp = __;
88
equals(1, temp, "Assign a value to the variable temp");
99
});
10-
10+
1111
test("global variables", function() {
1212
temp = 1;
1313
equals(temp, window.__, 'global variables are assigned to the window object');
1414
});
15-
15+
1616
});

topics/about_equality.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
$(document).ready(function(){
33

44
module("About Equality (topics/about_equality.js)");
@@ -15,13 +15,13 @@ $(document).ready(function(){
1515
ok(3 === __, 'what is exactly equal to 3?');
1616
});
1717

18-
test("equality with type coercsion", function() {
18+
test("equality with type coercion", function() {
1919
ok(3 == "__", 'what string is equal to 3, with type coercion?');
2020
});
2121

2222
test("string literals", function() {
2323
equals("frankenstein", '__', "quote types are interchangable, but must match.");
24-
});
25-
24+
});
25+
2626
});
27-
27+

0 commit comments

Comments
 (0)