doc cleanup

This commit is contained in:
Jeff Williams 2015-06-14 13:53:21 -07:00
parent d8c88ce158
commit 80d9429ac8

View File

@ -116,8 +116,8 @@ exports.Package = function(json) {
if (packageInfo.bugs) {
/**
* Information about where to report bugs in the project. May contain a URL, as a string, or
* an object with more detailed information.
* Information about where to report bugs in the project. May contain a URL, a string, or an
* object with more detailed information.
*
* @type {(string|module:jsdoc/package.Package~BugInfo)}
* @since 3.3.0
@ -166,9 +166,10 @@ exports.Package = function(json) {
if (packageInfo.engines) {
/**
* The JavaScript engines that this package supports. Each key is a string that identifies the
* engine (for example, `node`). Each value is a
* [semver](https://www.npmjs.org/doc/misc/semver.html)-compliant version number for the engine.
* The JavaScript engines that this package supports. Each key is a string that identifies
* the engine (for example, `node`). Each value is a
* [semver](https://www.npmjs.org/doc/misc/semver.html)-compliant version number for the
* engine.
*
* @type {Object}
* @since 3.3.0
@ -222,8 +223,8 @@ exports.Package = function(json) {
if (packageInfo.main) {
/**
* The module ID that provides the primary entry point to the package. For example, if your
* package is a CommonJS module, and the value of this property is `foo`, users should be able
* to load your module with `require('foo')`.
* package is a CommonJS module, and the value of this property is `foo`, users should be
* able to load your module with `require('foo')`.
*
* @type {string}
* @since 3.3.0