summaryrefslogtreecommitdiff
path: root/cli/tsc
diff options
context:
space:
mode:
authorAndrew <lushin.andrei@outlook.com>2023-03-18 13:25:06 +0100
committerGitHub <noreply@github.com>2023-03-18 12:25:06 +0000
commit44553aa09ec2de5a59db17433fd601a9dc7bd624 (patch)
tree90a2e499ba047b7192054d358379eb161cf45bdc /cli/tsc
parent4b6305f4f25fc76f974bbdcc9cdb139d5ab8f5f4 (diff)
docs(FFI/UnsafePointerView): fix a typo in a docstring (#18034)
Diffstat (limited to 'cli/tsc')
-rw-r--r--cli/tsc/dts/lib.deno.unstable.d.ts2
1 files changed, 1 insertions, 1 deletions
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 <i>really</i> dangerous! */
+ /** Create a pointer from a numeric value. This one is <i>really</i> 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;