doc fixes

This commit is contained in:
Jeff Williams 2014-08-06 15:23:43 -07:00
parent ead0e90409
commit d220954d97
3 changed files with 6 additions and 5 deletions

View File

@ -14,6 +14,7 @@ var hasOwnProp = Object.prototype.hasOwnProperty;
* Create an instance of the parser.
* @classdesc A parser to interpret the key-value pairs entered on the command line.
* @constructor
* @alias module:jsdoc/opts/argparser
*/
var ArgParser = function() {
this._options = [];

View File

@ -498,8 +498,8 @@ Parser.prototype.resolveEnum = function(e) {
* Fired once for each JSDoc comment in the current source code.
* @event jsdocCommentFound
* @memberof module:jsdoc/src/parser.Parser
* @param {event} e
* @param {string} e.comment The text content of the JSDoc comment
* @param {number} e.lineno The line number associated with the found comment.
* @param {string} e.filename The file name associated with the found comment.
* @type {Object}
* @property {string} comment The text content of the JSDoc comment
* @property {number} lineno The line number associated with the found comment.
* @property {string} filename The file name associated with the found comment.
*/

View File

@ -163,7 +163,7 @@ logger.error = wrapLogFunction('error', console.error);
/**
* Log a message at log level {@link module:jsdoc/util/logger.LEVELS.FATAL}.
*
* @name module:jsdoc/util/logger.error
* @name module:jsdoc/util/logger.fatal
* @function
* @param {string} message - The message to log.
* @param {...*=} values - The values that will replace the message's placeholders.