Skip to content

Commit 84394f8

Browse files
Kaushikgtmclaude
andcommitted
docs: fix bigint doctest literal in napi create-int64/uint64 native wrappers
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 21755fc commit 84394f8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/node_modules/@stdlib/napi/create-int64/lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var addon = require( './../src/addon.node' );
3434
*
3535
* @example
3636
* var v = wrapper( 1 );
37-
* // returns 1n
37+
* // returns 1
3838
*/
3939
function wrapper( v ) {
4040
return addon( v );

lib/node_modules/@stdlib/napi/create-uint64/lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var addon = require( './../src/addon.node' );
3434
*
3535
* @example
3636
* var v = wrapper( 1 );
37-
* // returns 1n
37+
* // returns 1
3838
*/
3939
function wrapper( v ) {
4040
return addon( v );

0 commit comments

Comments
 (0)