Skip to content

Commit 67e739f

Browse files
committed
reverted comment back to truthy and falsy. My mistake
1 parent 6e58795 commit 67e739f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entries/jquery-2.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
var a = { what: "A regular JS object" },
1515
b = $( "body" );
1616
17-
if ( a.jquery ) { // False, since it's undefined
17+
if ( a.jquery ) { // Falsy, since it's undefined
1818
alert( " a is a jQuery object! " );
1919
}
2020
21-
if ( b.jquery ) { // True, since it's a string
21+
if ( b.jquery ) { // Truthy, since it's a string
2222
alert( " b is a jQuery object! " );
2323
}
2424
]]></code>

0 commit comments

Comments
 (0)