Navigation Menu

Skip to content

Commit

Permalink
doc: clarify information about ABI version
Browse files Browse the repository at this point in the history
PR-URL: #10419
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Refs: #9901 (comment)
  • Loading branch information
Trott authored and MylesBorins committed Mar 9, 2017
1 parent 3fc6a22 commit 0a1d15f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/api/process.md
Expand Up @@ -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);
Expand Down

0 comments on commit 0a1d15f

Please sign in to comment.