From 84c11b08fa094341fa24e29faa70da818a36c444 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Tue, 4 Nov 2014 14:26:02 +0100 Subject: [PATCH] Fix filter() function parameter in jquery externs Submitted upstream: https://github.com/google/closure-compiler/pull/672 --- externs/jquery-1.9.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/externs/jquery-1.9.js b/externs/jquery-1.9.js index 7bec5709c9..38d21c0393 100644 --- a/externs/jquery-1.9.js +++ b/externs/jquery-1.9.js @@ -804,8 +804,9 @@ jQuery.prototype.fadeTo = function(duration, opacity, arg3, callback) {}; jQuery.prototype.fadeToggle = function(duration, easing, callback) {}; /** - * @param {(jQuerySelector|function(number)|Element|jQuery)} arg1 + * @param {(jQuerySelector|function(number,Element)|Element|jQuery)} arg1 * @return {!jQuery} + * @see http://api.jquery.com/filter/ */ jQuery.prototype.filter = function(arg1) {};