Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Dawson <mdawson@devrus.com>2021-02-18 03:04:10 +0300
committerAntoine du Hamel <duhamelantoine1995@gmail.com>2021-02-22 14:29:03 +0300
commitf37ae3c1e3bc53230481b58f5b6bbae72c4cc6cd (patch)
tree3cb04996b0bb9d95913c49f35b90fb8866316139 /doc/api/n-api.md
parent442be20760ffe981baf57307175b618fa504e12b (diff)
doc: fix alignment of parameters
fix alignment of parameters in napi_fatal_error Signed-off-by: Michael Dawson <mdawson@devrus.com> PR-URL: https://github.com/nodejs/node/pull/37422 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'doc/api/n-api.md')
-rw-r--r--doc/api/n-api.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/n-api.md b/doc/api/n-api.md
index fcac262e4f6..507e17af142 100644
--- a/doc/api/n-api.md
+++ b/doc/api/n-api.md
@@ -1275,9 +1275,9 @@ napiVersion: 1
```c
NAPI_NO_RETURN void napi_fatal_error(const char* location,
- size_t location_len,
- const char* message,
- size_t message_len);
+ size_t location_len,
+ const char* message,
+ size_t message_len);
```
* `[in] location`: Optional location at which the error occurred.