Commit 511f2eb1 511f2eb1f5141ef8b890b613a360e7e045c7571e by Mickaël Andrieu

Fixed syntax on jshint annotation

1 parent d0e5735b
...@@ -80,7 +80,7 @@ exports.betterTypeOf = betterTypeOf; ...@@ -80,7 +80,7 @@ exports.betterTypeOf = betterTypeOf;
80 */ 80 */
81 function betterInstanceOf(input, constructor) { 81 function betterInstanceOf(input, constructor) {
82 "use strict"; 82 "use strict";
83 /* global XMLDocument */ 83 /*global XMLDocument */
84 /*jshint eqnull:true, eqeqeq:false */ 84 /*jshint eqnull:true, eqeqeq:false */
85 while (input != null) { 85 while (input != null) {
86 if (input == constructor.prototype) { 86 if (input == constructor.prototype) {
......