From 3aeb037d0737911c8fb9e4ce1e486a23b46d2ff6 Mon Sep 17 00:00:00 2001 From: Jeff Williams Date: Tue, 26 Nov 2013 18:41:37 -0800 Subject: [PATCH] remove Node.js caveats --- lib/jsdoc/util/runtime.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/jsdoc/util/runtime.js b/lib/jsdoc/util/runtime.js index 38a2a5d8..1d6db92c 100644 --- a/lib/jsdoc/util/runtime.js +++ b/lib/jsdoc/util/runtime.js @@ -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() {