Jeff Williams 48e6c392d5 huge whitespace cleanup
- remove all trailing whitespace
- for consistency, replace all tabs with spaces
2014-03-03 07:43:01 -08:00

21 lines
315 B
JavaScript

/**
My test module.
@module my/module
*/
define(function() {
/**
@undocumented
@alias module:my/module
*/
var mod = {
/** Document a property. */
myProperty: "foo",
/** Document a method. */
myMethod: function() {}
};
return mod;
});