Fix broken JSDoc. No functional changes!
Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/5236a2e4 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/5236a2e4 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/5236a2e4 Branch: refs/heads/reference-guide Commit: 5236a2e4b484fac8947580d06f57ba0c24acaf94 Parents: f884894 Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Mon Jan 28 16:15:50 2013 +0100 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Mon Jan 28 16:15:50 2013 +0100 ---------------------------------------------------------------------- .../wicket/ajax/res/js/wicket-event-jquery.js | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/5236a2e4/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-event-jquery.js ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-event-jquery.js b/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-event-jquery.js index 48fcf7f..e4cd887 100644 --- a/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-event-jquery.js +++ b/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-event-jquery.js @@ -163,9 +163,9 @@ /** * Adds a subscriber for the passed topic. * - * @param String topic - the channel name for which this subscriber will be notified + * @param topic {String} - the channel name for which this subscriber will be notified * If '*' then it will be notified for all topics - * @param Function subscriber - the callback to call when an event with this type is published + * @param subscriber {Function} - the callback to call when an event with this type is published */ subscribe: function (topic, subscriber) { @@ -180,7 +180,7 @@ * otherwise the topic is not passed to subscribers which listen for specific * event types. * - * @param String topic - the channel name for which all subscribers will be notified. + * @param topic {String} - the channel name for which all subscribers will be notified. */ publish: function (topic) { if (topic) {
