Skip to content

Commit

Permalink
Fixes issue 745. (#748)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickNaso committed Jun 24, 2020
1 parent 4c01af2 commit bd2c5ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/bigint.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Returns the number of words needed to store this `BigInt` value.
### ToWords

```cpp
void Napi::BigInt::ToWords(size_t* word_count, int* sign_bit, uint64_t* words);
void Napi::BigInt::ToWords(int* sign_bit, size_t* word_count, uint64_t* words);
```
- `[out] sign_bit`: Integer representing if the JavaScript `BigInt` is positive
Expand Down

0 comments on commit bd2c5ec

Please sign in to comment.