remove Node.js caveats

This commit is contained in:
Jeff Williams 2013-11-26 18:41:37 -08:00
parent d3cff64ec0
commit 3aeb037d07

View File

@ -19,7 +19,7 @@ var NODE = exports.NODE = 'node';
* The JavaScript runtime that is executing JSDoc:
*
* + `module:jsdoc/util/runtime~RHINO`: Mozilla Rhino.
* + `module:jsdoc/util/runtime~NODE`: Node.js (not currently supported).
* + `module:jsdoc/util/runtime~NODE`: Node.js.
*
* @private
*/
@ -44,7 +44,7 @@ exports.isRhino = function() {
};
/**
* Check whether Node.js is running JSDoc. (Node.js is not currently supported.)
* Check whether Node.js is running JSDoc.
* @return {boolean} Set to `true` if the current runtime is Node.js.
*/
exports.isNode = function() {