From fcb143519020a464e88c30bb5af1dfc524485877 Mon Sep 17 00:00:00 2001 From: Gireesh Punathil Date: Wed, 30 Oct 2024 09:05:10 +0530 Subject: [PATCH] doc: improve c++ embedder API doc normalise the headers, fixup bullet points and expand `node::IsolateData` scope for clarity. --- doc/api/embedding.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/doc/api/embedding.md b/doc/api/embedding.md index d4ae090c255f97..e7f0b2c1a5e0cc 100644 --- a/doc/api/embedding.md +++ b/doc/api/embedding.md @@ -23,7 +23,7 @@ a Node.js-specific environment. The full code can be found [in the Node.js source tree][embedtest.cc]. -### Setting up per-process state +### Setting up a per-process state Node.js requires some per-process state management in order to run: @@ -72,7 +72,7 @@ int main(int argc, char** argv) { } ``` -### Per-instance state +### Setting up a per-instance state