Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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