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>
pull/37422/head
Michael Dawson 2021-02-17 19:04:10 -05:00 committed by Antoine du Hamel
parent 442be20760
commit f37ae3c1e3
1 changed files with 3 additions and 3 deletions

View File

@ -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.