Skip to content

Commit 62769e0

Browse files
authored
Apply suggestions from code review
Co-authored-by: Athan <kgryte@gmail.com> Signed-off-by: Athan <kgryte@gmail.com>
1 parent d233d6e commit 62769e0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/number/uint64/ctor/docs/types

lib/node_modules/@stdlib/number/uint64/ctor/docs/types/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ import Uint64 = require( './index' );
7272
new Uint64( 5, 3 ); // $ExpectError
7373
}
7474

75-
// The `from` method returns an unsigned 64-bit integer...
75+
// Attached to the constructor is a `from` method which returns an unsigned 64-bit integer...
7676
{
7777
Uint64.from( [ 0, 1 ] ); // $ExpectType Uint64
7878
Uint64.from( new Uint32Array( [ 0, 1 ] ) ); // $ExpectType Uint64
@@ -88,7 +88,7 @@ import Uint64 = require( './index' );
8888
Uint64.from( {} ); // $ExpectError
8989
}
9090

91-
// The `of` method returns an unsigned 64-bit integer...
91+
// Attached to the constructor is an `of` method which returns an unsigned 64-bit integer...
9292
{
9393
Uint64.of( 0, 1 ); // $ExpectType Uint64
9494
}

0 commit comments

Comments
 (0)