Created
September 5, 2014 00:02
-
-
Save bryanforbes/30da45dd327851dbb21e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @module my/module2 | |
*/ | |
define([], function () { | |
/** | |
* @alias module:my/module2 | |
*/ | |
var module2 = { | |
/** | |
* A description of the following function | |
* | |
* @param {string} arg1 - A description of this argument | |
* @returns {string} | |
*/ | |
someFunction: function (arg1) { | |
return ''; | |
} | |
}; | |
return module2; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment