Change case of "function"

This commit is contained in:
Schuyler Cebulskie
2016-11-12 21:07:22 -05:00
parent 90304aa7d6
commit b07a31d44e
4 changed files with 12 additions and 12 deletions

View File

@@ -337,7 +337,7 @@ class Client extends EventEmitter {
/**
* Sets a timeout that will be automatically cancelled if the client is destroyed.
* @param {function} fn Function to execute
* @param {Function} fn Function to execute
* @param {number} delay Time to wait before executing (in milliseconds)
* @param {args} args Arguments for the function (infinite/rest argument, not an array)
* @returns {Timeout}
@@ -362,7 +362,7 @@ class Client extends EventEmitter {
/**
* Sets an interval that will be automatically cancelled if the client is destroyed.
* @param {function} fn Function to execute
* @param {Function} fn Function to execute
* @param {number} delay Time to wait before executing (in milliseconds)
* @param {args} args Arguments for the function (infinite/rest argument, not an array)
* @returns {Timeout}