Skip to content

Commit

Permalink
Merge pull request meteor#8127 from abernix/feature/meteor-issue-7778
Browse files Browse the repository at this point in the history
[docs] Clarify docs for handle returned by Meteor.setTimeout/setInterval
  • Loading branch information
zol authored Dec 6, 2016
2 parents 5d9d06f + 47a3dd5 commit 8e13212
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/meteor/timers.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ _.extend(Meteor, {
* @memberOf Meteor
* @summary Cancel a repeating function call scheduled by `Meteor.setInterval`.
* @locus Anywhere
* @param {Number} id The handle returned by `Meteor.setInterval`
* @param {Object} id The handle returned by `Meteor.setInterval`
*/
clearInterval: function(x) {
return clearInterval(x);
Expand All @@ -54,7 +54,7 @@ _.extend(Meteor, {
* @memberOf Meteor
* @summary Cancel a function call scheduled by `Meteor.setTimeout`.
* @locus Anywhere
* @param {Number} id The handle returned by `Meteor.setTimeout`
* @param {Object} id The handle returned by `Meteor.setTimeout`
*/
clearTimeout: function(x) {
return clearTimeout(x);
Expand Down

0 comments on commit 8e13212

Please sign in to comment.