File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -194,8 +194,8 @@ us a report nonetheless.
194
194
195
195
- [ #14519 ] ( https://github.com/nodejs/node/issues/14519 ) : _ Internal domain
196
196
function can be used to cause segfaults_ . Causing program termination using
197
- either the public Javascript APIs or the private bindings layer APIs requires
198
- the ability to execute arbitrary Javascript code, which is already the highest
197
+ either the public JavaScript APIs or the private bindings layer APIs requires
198
+ the ability to execute arbitrary JavaScript code, which is already the highest
199
199
level of privilege possible.
200
200
201
201
- [ #12141 ] ( https://github.com/nodejs/node/pull/12141 ) : _ buffer: zero fill
Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ typedef void (*napi_async_complete_callback)(napi_env env,
202
202
```
203
203
204
204
## Error Handling
205
- N-API uses both return values and Javascript exceptions for error handling.
205
+ N-API uses both return values and JavaScript exceptions for error handling.
206
206
The following sections explain the approach for each case.
207
207
208
208
### Return values
@@ -2861,7 +2861,7 @@ Returns `napi_ok` if the API succeeded.
2861
2861
2862
2862
This API allows an add-on author to create a function object in native code.
2863
2863
This is the primary mechanism to allow calling *into* the add-on's native code
2864
- *from* Javascript .
2864
+ *from* JavaScript .
2865
2865
2866
2866
**Note:** The newly created function is not automatically visible from
2867
2867
script after this call. Instead, a property must be explicitly set on any
You can’t perform that action at this time.
0 commit comments