Skip to content

Commit cb2e41b

Browse files
committed
Update topics/about_control_structures.js
Line 70: "null coallescion" -> "null coalescing"
1 parent dea1fe1 commit cb2e41b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

topics/about_control_structures.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
module("About Control Structures (topics/about_control_structures.js)");
32

43
test("if", function() {
@@ -68,7 +67,7 @@ test("switch default case", function() {
6867
equals(result, __, 'what is the value of result?');
6968
});
7069

71-
test("null coallescion", function() {
70+
test("null coalescing", function() {
7271
var result = null || "a value";
7372
equals(result, __, 'what is the value of result?');
7473
});

0 commit comments

Comments
 (0)