From f3b02c9cc687a752c32bc6d59f529a23c5fba981 Mon Sep 17 00:00:00 2001 From: Benjamin Jones Date: Fri, 26 Oct 2012 11:43:28 -0700 Subject: fixed minor jsdocs typos --- contexts/data/fiveui/injected/prelude.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contexts/data/fiveui/injected/prelude.js b/contexts/data/fiveui/injected/prelude.js index eb9b0dd..eaf5bb5 100644 --- a/contexts/data/fiveui/injected/prelude.js +++ b/contexts/data/fiveui/injected/prelude.js @@ -54,7 +54,7 @@ fiveui = fiveui || {}; * * @param {string} sel The jQuery selector string. * @param {?Object} context Optional: The context to run the query within. This is often a DOM object/tree. - * @return {Object} A jQuery object, suitable for chaining. + * @returns {Object} A jQuery object, suitable for chaining. */ fiveui.query = function (sel, context) { var ctx = context || document; @@ -97,7 +97,7 @@ fiveui.string = {}; * string. * * @param {?string} s The string to trim of whitespace. - * @return {?string} The input string, without leading or trailing + * @returns {?string} The input string, without leading or trailing * whitespace. Returns null if you gave it null. */ fiveui.string.trim = function(s) { @@ -111,7 +111,7 @@ fiveui.string.trim = function(s) { * Tokenize a string on whitespace. * * @param {!string} s The string to tokenize. - * @return {!Array.} An array of substrings. + * @returns {!Array.} An array of substrings. */ fiveui.string.tokens = function (s) { var posLength = function(ar) { -- cgit v1.2.3