mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 15:24:46 -05:00
docs(FFI/UnsafePointerView): fix a typo in a docstring (#18034)
This commit is contained in:
parent
4b6305f4f2
commit
44553aa09e
1 changed files with 1 additions and 1 deletions
2
cli/tsc/dts/lib.deno.unstable.d.ts
vendored
2
cli/tsc/dts/lib.deno.unstable.d.ts
vendored
|
@ -362,7 +362,7 @@ declare namespace Deno {
|
||||||
* @category FFI
|
* @category FFI
|
||||||
*/
|
*/
|
||||||
export class UnsafePointer {
|
export class UnsafePointer {
|
||||||
/** Create a pointer from a numeric value. This is one is <i>really</i> dangerous! */
|
/** Create a pointer from a numeric value. This one is <i>really</i> dangerous! */
|
||||||
static create(value: number | bigint): PointerValue;
|
static create(value: number | bigint): PointerValue;
|
||||||
/** Returns `true` if the two pointers point to the same address. */
|
/** Returns `true` if the two pointers point to the same address. */
|
||||||
static equals(a: PointerValue, b: PointerValue): boolean;
|
static equals(a: PointerValue, b: PointerValue): boolean;
|
||||||
|
|
Loading…
Reference in a new issue