1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-21 23:04:45 -05:00

docs(FFI/UnsafePointerView): fix a typo in a docstring (#18034)

This commit is contained in:
Andrew 2023-03-18 13:25:06 +01:00 committed by GitHub
parent 4b6305f4f2
commit 44553aa09e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;