aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Benjamin Jones <bjones@galois.com>2012-10-26 11:43:28 -0700
committerGravatar Benjamin Jones <bjones@galois.com>2012-10-26 11:43:28 -0700
commitf3b02c9cc687a752c32bc6d59f529a23c5fba981 (patch)
tree212fc05965ffed32eb89ef45a30a13243382642d
parent3a84c8a3505717a8287b34dc73905f16051d5989 (diff)
fixed minor jsdocs typos
-rw-r--r--contexts/data/fiveui/injected/prelude.js6
1 files 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.<!string>} An array of substrings.
+ * @returns {!Array.<!string>} An array of substrings.
*/
fiveui.string.tokens = function (s) {
var posLength = function(ar) {