diff options
Diffstat (limited to 'core/src/OC/util.js')
-rw-r--r-- | core/src/OC/util.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/OC/util.js b/core/src/OC/util.js index e3e3e2a3171..463fd937eca 100644 --- a/core/src/OC/util.js +++ b/core/src/OC/util.js @@ -148,7 +148,7 @@ export default { /** * Returns the width of a generic browser scrollbar * - * @return {int} width of scrollbar + * @return {number} width of scrollbar */ getScrollBarWidth() { if (this._scrollBarWidth) { @@ -230,7 +230,7 @@ export default { * Calls the callback in a given interval until it returns true * * @param {Function} callback function to call on success - * @param {integer} interval in milliseconds + * @param {number} interval in milliseconds */ waitFor(callback, interval) { const internalCallback = function() { |