From 801b9ec62d94f201e67d053ee90dae0b70e50a42 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Mon, 26 Jun 2023 15:10:27 +0200 Subject: chore: fix typos (#19572) --- ext/webidl/internal.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ext/webidl/internal.d.ts') diff --git a/ext/webidl/internal.d.ts b/ext/webidl/internal.d.ts index cc4422a27..3e133cc06 100644 --- a/ext/webidl/internal.d.ts +++ b/ext/webidl/internal.d.ts @@ -13,24 +13,24 @@ declare module "ext:deno_webidl/00_webidl.js" { ): any; interface IntConverterOpts { /** - * Wether to throw if the number is outside of the acceptable values for + * Whether to throw if the number is outside of the acceptable values for * this type. */ enforceRange?: boolean; /** - * Wether to clamp this number to the acceptable values for this type. + * Whether to clamp this number to the acceptable values for this type. */ clamp?: boolean; } interface StringConverterOpts { /** - * Wether to treat `null` value as an empty string. + * Whether to treat `null` value as an empty string. */ treatNullAsEmptyString?: boolean; } interface BufferConverterOpts { /** - * Wether to allow `SharedArrayBuffer` (not just `ArrayBuffer`). + * Whether to allow `SharedArrayBuffer` (not just `ArrayBuffer`). */ allowShared?: boolean; } -- cgit v1.2.3