Skip to content

Commit

Permalink
doc: fix typos in N-API
Browse files Browse the repository at this point in the history
PR-URL: #16911
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Tobias Nießen <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Franziska Hinkelmann <[email protected]>
  • Loading branch information
SwathiKalahastri authored and fhinkel committed Nov 11, 2017
1 parent b9a7721 commit e0b1394
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/api/n-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1788,7 +1788,7 @@ This API returns the C int32 primitive equivalent
of the given JavaScript Number. If the number exceeds the range of the
32 bit integer, then the result is truncated to the equivalent of the
bottom 32 bits. This can result in a large positive number becoming
a negative number if the the value is > 2^31 -1.
a negative number if the value is > 2^31 -1.

#### *napi_get_value_int64*
<!-- YAML
Expand Down Expand Up @@ -3013,7 +3013,7 @@ constructor and methods can be called from JavaScript.

1. The [`napi_define_class`][] API defines a JavaScript class with constructor,
static properties and methods, and instance properties and methods that
correspond to the The C++ class.
correspond to the C++ class.
2. When JavaScript code invokes the constructor, the constructor callback
uses [`napi_wrap`][] to wrap a new C++ instance in a JavaScript object,
then returns the wrapper object.
Expand Down

0 comments on commit e0b1394

Please sign in to comment.