Skip to content

Commit

Permalink
jQuery each2: fixed minor typo in code comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
cowboy committed Aug 3, 2010
1 parent 3641ec9 commit ea39c4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jquery.ba-each2.js
Expand Up @@ -21,8 +21,8 @@


while ( while (
// Set both the first element AND context property of the placeholder // Set both the first element AND context property of the placeholder
// jQuery object to the DOM element. When i > this.length, this[++i] // jQuery object to the DOM element. When i has been incremented past the
// will return undefined and abort the while loop. // end, this[++i] will return undefined and abort the while loop.
( jq.context = jq[0] = this[++i] ) ( jq.context = jq[0] = this[++i] )


// Invoke the callback function in the context of the DOM element, // Invoke the callback function in the context of the DOM element,
Expand Down

0 comments on commit ea39c4f

Please sign in to comment.