jsdoc/test/fixtures/moduletag3.js
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

20 lines
390 B
JavaScript

/**
@module foo/Photo/manager
@desc Manage a collection of photos.
*/
/**
Construct a new Photo manager
@constructor module:foo/Photo/manager
@param {String} collectionId The identifier of the managed collection.
*/
module.exports = function(collectionId) {
/**
@function module:foo/Photo/manager#getPhoto
@param {String} photoName
*/
this.getPhoto = function() {}
}