From 44553aa09ec2de5a59db17433fd601a9dc7bd624 Mon Sep 17 00:00:00 2001 From: Andrew Date: Sat, 18 Mar 2023 13:25:06 +0100 Subject: docs(FFI/UnsafePointerView): fix a typo in a docstring (#18034) --- cli/tsc/dts/lib.deno.unstable.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/tsc/dts/lib.deno.unstable.d.ts') diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts index 238c34df9..ed7e682f1 100644 --- a/cli/tsc/dts/lib.deno.unstable.d.ts +++ b/cli/tsc/dts/lib.deno.unstable.d.ts @@ -362,7 +362,7 @@ declare namespace Deno { * @category FFI */ export class UnsafePointer { - /** Create a pointer from a numeric value. This is one is really dangerous! */ + /** Create a pointer from a numeric value. This one is really dangerous! */ static create(value: number | bigint): PointerValue; /** Returns `true` if the two pointers point to the same address. */ static equals(a: PointerValue, b: PointerValue): boolean; -- cgit v1.2.3