From 0a1d15fba603362f10550cae9a1d4aa61b8d2b1f Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 22 Dec 2016 17:04:10 -0800 Subject: [PATCH] doc: clarify information about ABI version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/10419 Reviewed-By: James M Snell Reviewed-By: Michaƫl Zasso Reviewed-By: Sakthipriyan Vairamani Refs: https://github.com/nodejs/node/pull/9901#discussion_r93575704 --- doc/api/process.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/process.md b/doc/api/process.md index 05c83dceb7fb94..0be02e0c673e7a 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -1687,9 +1687,9 @@ added: v0.2.0 * {Object} The `process.versions` property returns an object listing the version strings of -Node.js and its dependencies. In addition, `process.versions.modules` indicates -the current ABI version, which is increased whenever a C++ API changes. Node.js -will refuse to load native modules built for an older `modules` value. +Node.js and its dependencies. `process.versions.modules` indicates the current +ABI version, which is increased whenever a C++ API changes. Node.js will refuse +to load modules that were compiled against a different module ABI version. ```js console.log(process.versions);