Example 1:
(function( $, undefined ){
Basically, in both cases, the space and paren are transposed. As you can see, it highlights the parens as being differences. If I insert a space after the first paren, or remove the existing space before it, the difference goes away. Same thing with the second paren - inserting a space before it or removing the one after it also removes the difference.(function ($, undefined) {
Another example, slight variation on the above theme:
var data = $.data( obj ),
Here, inserting a space either before or after "obj" removes the difference highlight.var data = $.data(obj),
(I was running 3.3.0 when I noticed this; 3.3.1 exhibits the same behavior.)